-
Notifications
You must be signed in to change notification settings - Fork 0
/
log_in_page.html
44 lines (42 loc) · 1.54 KB
/
log_in_page.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
<!DOCTYPE HTML>
<html>
<head>
<title>Log In</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="login_main">
<header>
<div class="caption">Log In Page</div>
<div class="header_text1">Return to <a href="index.html">Main page</a></div>
</header>
<div class="container">
<div class="text">Please enter email and password</div>
<form id="form_login">
<div class="form_input">
<p><label for="email">Email</label></p>
<p><input type="text" placeholder="Enter your email" name="email" id="user_email" required></p>
</div>
<div class="form_input">
<p><label for="password">Password</label></p>
<p><input type="password" placeholder="Enter password" name="password" id="user_password" required></p>
</div>
<div class="buttons">
<button id="btn_log_in">Submit</button>
<button id="btn_clear">Clear</button>
</div>
</form>
<div class="for_login">
<p>Return to <a href="index.html">Main page</a></p>
<p>If you don't have account <a href="sign_up_page.html">Sign Up</a></p>
</div>
</div>
<div class="img2">
<img src="img/img2.png">
</div>
</div>
<script src="src/script2.js" type="module"></script>
</body>
</html>