-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex4.html
32 lines (32 loc) · 1.24 KB
/
ex4.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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ex3</title>
</head>
<body>
<h1>Informação pessoal</h1>
<form name="PersonData" action="http://192.168.160.36/FormEcho.aspx" method="POST">
<fieldset>
<legend>Informação Pessoal</legend>
<input type="hidden" name="FormName" value="UserForm"/>
<dl>
<dt>Nome:</dt>
<dd><input type="text" name="FirstName" value="Joaquim" placeholder="Nome"/></dd>
<dt>Sobrenome:</dt>
<dd><input type="text" name="LaststName" placeholder="Sobrenome"/></dd>
<dt>Palavra-Passe:</dt>
<dd><input type="password" name="Password" placeholder="Digite a palavra-passe"/></dd>
</dl>
</fieldset>
<fieldset>
<legend>Comentários:</legend>
<textarea name="Comments" rows="4" cols="80" placeholder="Insira os seus comentários"></textarea>
</fieldset>
<hr>
<input type="submit" name="Button"/>
<input type="reset" name="resetBtn">
</body>
</html>