-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.php
More file actions
37 lines (33 loc) · 1.13 KB
/
Copy pathmain.php
File metadata and controls
37 lines (33 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
$ciudades = array("","Bogota","Medellin","Cali","Barranquilla","Bucaramanga","Manizales","Cartagena","Pereira");
?>
<!DOCTYPE html>
<html>
<head>
<title>Centro De Tickets</title>
</head>
<body>
<h1 align="Center">Creacion de Ticket</h1>
<button><a href="Usuario.php">Volver al Inicio</a> <br></button>
<h4>Ingrese sus datos a Continuacion</h4>
<form action="Engine.php" method="POST">
<input type="text" name="Nombre" placeholder="Nombre" required="">
<input type="text" name="Cargo" placeholder="Cargo" required="">
<br><br>
<input type="text" name="Area" placeholder="Area" required="">
Ciudad
<select name = "Ciudad" required="">
<?php foreach ($ciudades as $value) {?>
<option value="<?php Echo $value?>"><?php echo $value ?> </option>
<?php } ?>
</select>
<br><br>
<input type="email" name="Email" placeholder="Email" required="">
<input type="text" name="Telefono" placeholder="Telefono" required="">
<br><br>
<textarea name="Observacion" rows="20" cols="100" placeholder="Ingrese su novedad"></textarea>
<br>
<input type="submit" name="Submit">
</form>
</body>
</html>