-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.28 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<form id="main-form" method="post" action="/api/UserController/SaveUserData">
<label for="name">Имя:</label>
<input type="text" name="name" placeholder="Имя" id="name" /><br /><br />
<label for="password">Пароль:</label>
<input type="password"
name="pass"
placeholder="Пароль"
id="pass" /><br /><br />
<label for="repass">Проверка пароля:</label>
<input type="password"
name="repass"
placeholder="Проверка пароля"
id="repass" /><br /><br />
<span>Пол:</span>
<input type="radio" name="state" id="male" value="Мужской" />
<label for="male">Мужской</label>
<input type="radio" name="state" id="female" value="Женский" />
<label for="female">Женский</label><br /><br />
<div id="error" style="color: red"></div>
<br />
<input type="submit" name="submit" value="Готово" />
</form>
<script src="js/main.js"></script>
</body>
</html>