-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (55 loc) · 2.01 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
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 name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<script src="https://kit.fontawesome.com/1dc6e27830.js" crossorigin="anonymous"></script>
<title>Eco Scrap</title>
<link rel="shortcut icon" href="/Img/propic1.jpg" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="ls">
<div class="SignUp">
Sign Up
</div>
<div class="login">
Login
</div>
</div>
<label class="switch">
<input type="checkbox" id="mls">
<span class="slider round"></span>
</label>
</div>
<div class="SignupForm Form">
<form>
<h2> Sign Up</h2>
<input type="text" placeholder="  Name" id="name" required>
<input type="number" placeholder="  Phone Number" id="no" required>
<input type="email" placeholder="  Email" class="email" required>
<input type="password" placeholder="  Password" class="pass" required>
<button onclick="toggleForms()">Register</button>
</form>
</div>
<!-- <div class="card">
<img id="front" src="/Img/card-front.png" alt="Green Card">
<img id="back" src="/Img/card-back.png" alt="Green Card">
<p id="outname"></p>
<p id="outno"></p>
<p id="outemail"></p>
</div> -->
<div class="LoginForm Form">
<form>
<h2>Login</h2>
<input type="email" placeholder=" Email" class="email" required>
<input type="password" placeholder=" Password" class="pass" required>
<a href="/home.html"><button id="login">Login</button></a>
<p>Forgot your password??</p>
</form>
</div>
<!-- Script Tag -->
<script src="index.js" defer></script>
</body>
</html>