-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagencia-f.php
31 lines (31 loc) · 1.29 KB
/
agencia-f.php
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
<html lang="pt-br">
<head>
<title>Cadastrar - Agência</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="./css/mystyle.css" />
</head>
<body>
<form name="dadosAgencia" action="agencia-c.php" method="POST">
<table border="1">
<tbody>
<tr>
<td>Código Agência:</td>
<td><input type="text" name="idAgencia" value="" disabled="true" /></td>
</tr>
<tr>
<td>Nome:</td>
<td><input type="text" name="nomeAgencia" value="" onkeyup="this.value = this.value.toUpperCase();"/></td>
</tr>
<tr>
<td>Cidade:</td>
<td><input type="text" name="cidadeAgencia" value="" onkeyup="this.value = this.value.toUpperCase();"/></td>
</tr>
<tr>
<td><input type="submit" name="acao" value="Enviar" onclick="alert('Cadastro efetuado com sucesso.');"></td>
</tr>
</tbody>
</table>
</form>
<a href="index.html">Voltar ao início</a>
</body>
</html>