forked from optimizershivam/Bluefly-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
58 lines (46 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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="" />
<title>Document</title>
<link rel="stylesheet" href="style/login.css">
<link rel="stylesheet" href="style/createaccount.css">
<link rel="stylesheet" href="style/nav.css">
</head>
<body>
<header id="head">
</header>
<div id="Customer_Account">
<form id="Log_in">
<h1 id="Login_Account">LOGIN</h1>
<label for="Email1">EMAIL</label>
<div>
<input type="text" id="Email1" required>
</div>
<label for="Password1">PASSWORD</label>
<div>
<input type="password" id="Password1" required>
</div>
<!-- <div>
<input type="submit" value="SIGN IN" id="Submit1">
</div> -->
<input type="submit" value="SIGN IN" id="Submit1">
<!-- <button></button> -->
<p id="accRef">
<a href="createaccount.html" style="text-decoration: none;color: black;">Create account</a>
</p>
</form>
</div>
<hr>
<!-- last three -->
<div id="lasthree">
</div>
<!-- footer -->
<footer id="foot">
</footer>
</body>
</html>
<script src="scripts/login.js" type="module"></script>