-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
45 lines (42 loc) · 1.78 KB
/
login.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
<!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>Apni-Dukaan</title>
<link rel="stylesheet" type="text/css" href="./static/login.css">
<script src="./static/login.js"></script>
<link rel="icon" href="./Images/Stationery/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="login_form">
<div class="details">
<div class="welcome">Apni Dukaan</div>
<form>
<div class="wrap">
<label>Email</label>
<input type="text" class="input" id="email">
</div>
<div class="wrap">
<label>Password</label>
<input type="password" class="input" data-type="password" id="pwd1">
</div>
<div class="wrap">
<label>Forgot password?</label>
</div>
<button class="button" value="Login" onClick="return login()"><h1 class="sign">Sign in!</h1></button>
</form>
</div>
<a href = "./index.html" ><img class="fox" src="https://github.com/shreyshreyansh/video/blob/main/ApniDukaanLogo-removebg-preview.png?raw=true" /> </a>
<div class="details-two">
<h1 class="back">Welcome back!</h1>
<p class="log">Log in and use the opportunities offered by our portal.</p>
<h2 class="acc">You don't have an account?</h2>
<button class="signup" value="Signup" onclick="signup()"><h3>SignUp!</h3></button></button>
</div>
</div>
<script src="./static/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>