-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (29 loc) · 967 Bytes
/
Copy pathindex.php
File metadata and controls
33 lines (29 loc) · 967 Bytes
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
<?php
session_start();
if ($_SESSION['user']) {
header('location: profile.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>АвтоРег</title>
<link rel="stylesheet" href="stili/css/main.css">
</head>
<body>
<form>
<label >Логин</label>
<input type="text" name="login" placeholder="Введите логин">
<label >Пароль</label>
<input type="password" name="password" placeholder="Введите пароль">
<button type="submit" class="login-btn">Войти</button>
<p>
Нет аккаунта? - <a href= "/register.php">Зарегестрируйтесь</a>
</p>
<p class="msg none"> Пользователь зарегестрирован </p>
<script src="stili/JS/Jquery.js"></script>
<script src="stili/JS/main.js"></script>
</form>
</body>
</html>