-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipoconta-f.php
27 lines (27 loc) · 1019 Bytes
/
tipoconta-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
<html lang="pt-br">
<head>
<title>Cadastrar - Tipos de Conta</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="./css/mystyle.css" />
</head>
<body>
<form name="dadosTipoConta" action="tipoconta-c.php" method="POST">
<table border="1">
<tbody>
<tr>
<td>Código Tipo De Conta:</td>
<td><input type="text" name="idTipoConta" value="" disabled="true" /></td>
</tr>
<tr>
<td>Descrição:</td>
<td><input type="text" name="descricaoTipoConta" 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>