-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainRegisto.php
48 lines (48 loc) · 2.11 KB
/
mainRegisto.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
include "_header.php";
include "_leftBar.php"
?>
<div id="center" class="content">
<form id="formRegistar" name="registar" action="php/saveRegisto.php" method="post" onsubmit="return validarReg()" >
<p>CRIAR CONTA</p>
<fieldset><legend>DADOS PESSOAIS</legend>
<table>
<tr>
<td style="width:190px;"><label for="nome">NOME PRÓPRIO:</label></td>
<td><input class="input" id="nome" name="nome" type="text" size="25" maxlength="30"></td>
</tr>
<tr>
<td><label for="apelido">APELIDO:</label></td>
<td><input class="input" id="apelido" name="apelido" type="text" size="25" maxlength="30"></td>
</tr>
<tr>
<td><label for="mail">E-MAIL:</label></td>
<td><input class="input" id="mail" name="mail" type="text" size="25" maxlength="50"></td>
</tr>
</table>
</fieldset>
<fieldset><legend>ESCOLHA A PALAVRA PASSE</legend>
<table>
<tr>
<td style="width:190px;"><label for="password">PALAVRA PASSE:</label></td>
<td><input class="input" id="password" name="password" type="password" size="25" maxlength="30"></td>
</tr>
<tr>
<td><label for="passwordCheck">REPITA A PALAVRA PASSE:</label></td>
<td><input class="input" id="passwordCheck" name="passwordCheck" type="password" size="25" maxlength="30"></td>
</tr>
</table>
</fieldset>
<p id="aviso" style="border-radius:1px;">Todos os campos são de preenchimento obrigatório.</p>
<table style="width:100%">
<tr style="height:20px;">
<td style="width:50%"></td>
<td style="text-align:center"><input class="bt" name="submeter" type="submit" value="Enviar"></td>
</tr>
</table>
</form>
<br><br><br>
</div>
<?php
include "_footer.php";
?>