-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.php
24 lines (23 loc) · 1.01 KB
/
registration.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
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Регистрация</title>
<link rel="stylesheet" href="css/reg.css">
</head>
<body>
<div class="container">
<form action="/php/reg.php" method="post">
<input type="text" name="user_name" placeholder="Имя..." class="reg_input"><br>
<input type="text" name="user_surname" placeholder="Фамилия..." class="reg_input"><br>
<input type="text" name="user_login" placeholder="Логин..." class="reg_input"><br>
<input type="email" name="user_email" placeholder="E-mail..." class="reg_input"><br>
<input type="text" name="user_password" placeholder="Password" class="reg_input"><br>
<button type="submit" class="reg_button">Регистрация</button>
</form>
</div>
</body>
</html>