forked from optimizershivam/Bluefly-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createaccount.html
58 lines (47 loc) · 1.39 KB
/
createaccount.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/createaccount.css">
<link rel="stylesheet" href="style/nav.css">
</head>
<body>
<header id="head">
</header>
<div id="Customer">
<form id="Create_Account">
<h1 id="Account">CREATE ACCOUNT</h1>
<label for="FirstName">FIRST NAME</label>
<div>
<input type="text" id="FirstName" >
</div>
<label for="LastName">LAST NAME</label>
<div>
<input type="text" id="LastName" >
</div>
<label for="Email">EMAIL</label>
<div>
<input type="text" id="Email" >
</div>
<label for="Password">PASSWORD</label>
<div>
<input type="password" id="Password" >
</div>
<!-- <input type="submit" value="CREATE" id="Submit"> -->
<button id="Submit">CREATE</button>
</form>
</div>
<hr>
<!-- last three -->
<div id="lasthree">
</div>
<!-- footer -->
<footer id="foot">
</footer>
</body>
</html>
<script src="scripts/createaccount.js" type="module"></script>