-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (28 loc) · 1.17 KB
/
Copy pathindex.php
File metadata and controls
29 lines (28 loc) · 1.17 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
<?session_start();?>
<html lang="en">
<?include 'content/header.php';?>
<body>
<form action="reg.php" method="POST" name="registration">
<p>Придумайте логин</p>
<input type="text" maxlength="20" name='login' placeholder="Login">
<p>Придумайте пароль</p>
<input type="password" maxlength="32" name='password' placeholder="Password">
<p>Повторите пароль</p>
<input type="password" maxlength="32" name='password_r' placeholder="Repeat passsword">
<br>
<button type='submit'>Подтвердить</button>
</form>
<br>
<hr>
<form action="php/sign.php" method="POST" name="registration">
<p>Логин</p>
<input type="text" maxlength="20" name='login' placeholder="Login">
<p>Пароль</p>
<input type="password" maxlength="32" name='password' placeholder="Passsword">
<br>
<button type='submit'>Подтвердить</button>
</form>
</body>
<hr>
<center><?include 'content/footer.php';?></center>
</html>