forked from kevjin/buy-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
newaccount.html
44 lines (43 loc) · 1.49 KB
/
newaccount.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<meta charset="UTF-8"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400|Raleway:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="style.css" type="text/css"/>
<title>Home</title>
<style>
input{
display:inline-block;
width:100px;
}
h3{
display:inline-block;
width:100px;
}
</style>
</head>
<body>
<header>
<div class="title" style="text-align: center">
<h1 style="font-size: 50px">Note Market</h1>
</div>
<hr size= "30">
</header>
<div>
<form>
<h3>First Name:</h3>
<input type="text" name="firstname"><br>
<h3>Last Name:</h3>
<input type="text" name="lastname"><br>
<h3>Email:</h3>
<input type="text" name="email"><br>
<h3>Username:</h3>
<input type="text" name="newusername"><br>
<h3>Password:</h3>
<input type="text" name="newpassword"><br>
<button type="button" id="caButton" onclick="window.location.href='marketplace.html'">Create Your Account</button>
</form>
</div>
</body>
</html>