-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
44 lines (43 loc) · 1.78 KB
/
Copy pathform.html
File metadata and controls
44 lines (43 loc) · 1.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form</title>
<style>
body{
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: darkgrey;
}
</style>
</head>
<body>
<form>
<div>
<h1>REGISTER FORM</h1>
<p>Please fill in the form to register</p>
<hr>
<label><b>Name</b></label><br>
<input type="text"size=50% id="name" name="fname" placeholder="First name*" required>
<input type="text"size=50% id="name" name="Name" placeholder="Second name*"><br><br>
<label><b>Patronymic</b></label><br>
<input type="text" id="patro" name="patro" placeholder="Patronymic*" required><br><br>
<label><b>Email</b></label><br>
<input type="text" id="mail" name="mail" placeholder="Enter email*" required><br><br>
<label><b>Password</b></label><br>
<input type="password" id="psw" name="psw" placeholder="Enter password*" required><br><br>
<label><b>Age</b></label><br>
<input type="text" id="age" name="age" placeholder="Enter your age*" required><br><br>
<label><b>Author</b></label><br>
<select name="author" id="'author">
<option value="Author">Author</option>
<option value="ABC">ABC</option>
<option value="BCD">BCD</option>
<option value="CDE">CDE</option>
</select><br><br>
<label><b>About you</b></label><br>
<textarea rows="10" columns="20" placeholder="A few words about you"></textarea><br><br>
<hr>
<input type="submit" value="submit" >
</div>
</form>
</body>
</html>