-
Notifications
You must be signed in to change notification settings - Fork 0
/
rotas.html
29 lines (29 loc) · 1.11 KB
/
rotas.html
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<title>Cadastrar rotas</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<form method="post" action="cadastrorotas.php">
<p>
<label for="origem">Origem</label><br>
<input id="origem" name="origem" type="text" placeholder="ex. Sao Paulo, Rio de Janeiro"/>
</p>
<p>
<label for="destino">Destino</label><br>
<input id="destino" name="destino" type="text" placeholder="ex. Sao Paulo, Rio de Janeiro"/>
</p>
<p>
<label for="distancia">Distancia em kilometros</label><br>
<input id="distancia" name="distancia" type="text" placeholder="ex. 1500,100,500"/>
</p>
<p>
<input type="submit" value="Cadastrar" />
</p>
<br>
<ul>
<li><a class= "button" href="menu.php">voltar</a></li>
<li><a class= "button" href="logout.php">Sair</a></li>
</ul>