-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc6.html
55 lines (53 loc) · 1.06 KB
/
c6.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>Formular</title>
<meta charset-"UTF-8">
</head>
<body>
<form action = "register.php" method="post">
<label>
Name <br>
<input type = "text" name="username" required>
</label>
<br>
<label>
Last Name <br>
<input type = "text" name = "lastname" required>
</label>
<br>
<label>
Year of birth <br>
<input type = "date" name = "yearofbirth" required>
</label>
<br>
<label>
Email <br>
<input type = "email" name = "email" required>
</label>
<br>
<label>
Password <br>
<input type = "password" name = "pwd1" required>
</label>
<br>
<label>
Re-type Password <br>
<input type = "password" name = "pwd2" required>
</label>
<br>
<label>
Country <br>
<select name = "country">
<option value="Macedonia">Macedonia</option>
<option value="Serbia">Serbia</option>
<option value="Croatia">Croatia</option>
<option value="Bulgaria">Bulgaria</option>
</select>
</label>
<br>
<button type="submit">Submit</button>
</form>
</body>
</html>