-
Notifications
You must be signed in to change notification settings - Fork 0
/
authorisation.html
61 lines (54 loc) · 2.33 KB
/
authorisation.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="En">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>autorisation</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="d-flex">
<div class="container d-flex">
<a href="#">
<img class="logo" src="./assets/icons/logo.svg" alt="logo">
</a>
<nav class="d-flex">
<div>
<a name="btn btn-link" href="./home.html">Nana Shvelidzen</a>
<a name="btn btn-link" href="./my_resume.html">My Resume</a>
<a name="btn btn-link" href="./blog-detail.html">Blog</a>
<a name="btn btn-link" href="./contact.html">Contact Me</a>
</nav>
</div>
</header>
<div class="container body-container">
<div class="auth-form-container">
<p> "For Video Lessons Log In" </p>
<form action="" method="get">
<div class="form-group">
<label class="text-input-label" for="userName">User Name</label>
<input class="text-input" type="text" name="userName" id="userName"
placeholder="your name">
</div>
<div class="form-group">
<label class="text-input-label" for="pass">Password</label>
<input class="text-input" type="password" name="pass" id="pass">
</div>
<div class="form-group">
<input type="checkbox" id="save" name="save">
<label for="save">remember me</label>
</div>
<a class="btn btn-link mb-15" href="./authorisation.html">Recover your password</a>
<button class="btn btn-primary mb-15 w-100">Log In</button>
<a class="btn btn-link" href="./registration.html">registration</a>
</form>
</div>
</div>
<footer>
<div class="container">
<p>Curiosity can develop hard work easily. If you are curious about something then definitely you will do hard work</p>
</div>
</footer>
</body>
</html>