-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (36 loc) · 1.97 KB
/
index.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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bttn.css">
<script type="module" src="form.js"></script>
<title>Poll.com</title>
</head>
<body>
<img src="https://media.istockphoto.com/vectors/different-people-voting-hands-are-putting-paper-ballots-to-the-box-vector-id1267153161?k=20&m=1267153161&s=612x612&w=0&h=n61VOLV1dHvwVIJmPsqMTZ2MKXZWcMsAQtvDsfCQthg=" height="700" width="1500">
<div class="box" id="login-div">
<h2 class="font-clr"> LOGIN</h2>
<input type="email" id="login-email" class="text-field" name="login-email" placeholder="Email" required><br>
<input type="password" id="login-password" class="text-field" name="login-password" placeholder="Password" required><br>
<button id="login-btn" class="btn-style">Login</button><br>
<button id="reg-btn" class="an-btn">don't have an account? Register</button><br>
</div>
<div class="box" id="register-div">
<h2 class="font-clr">Register</h2>
<input type="email" id="register-email"class="text-field" name="register-email" placeholder="Email" required><br>
<input type="password" id="register-password" class="text-field"name="register-password" placeholder="Password" required><br>
<button id="register-btn" class="btn-style">REGISTER</button><br>
<button id="log-btn" class="an-btn">have an account? Login</button><br>
</div>
<div id="result-box">
<h3 id="result"></h3>
<button id="log-out-btn" class="btn-style"> LOGIN OUT</button><br>
<nav>
<a href=indexpage.html><button id="proceed" class="btn-style">Proceed</button></a><br>
</nav>
</div>
</body>
</html>