-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth_enter.html
60 lines (54 loc) · 2.26 KB
/
auth_enter.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
<!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>autorizationn</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>
</div>
</nav>
</div>
</header>
<div class="container body-container">
<div class="auth-form-container">
<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="write 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="./auth_enter.html">recover password</a>
<button class="btn btn-primary mb-15 w-100">enter</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>