-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
29 lines (21 loc) · 1008 Bytes
/
signup.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
<html>
<head>
<title>HYCO</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<h1>HYCOs Webbshop</h1>
<div class="middle">
<form action="signup.php" method="post">
<P><span class="title">First name</span> <input name="firstname" type="text" id="right"/></P>
<P><span class="title">Last name</span> <input name="lastname" type="text" id="right"/></P>
<P><span class="title">Email</span> <input name="email" type="text" id="right"/></P>
<P><span class="title">Password (at least 8 characters long)</span> <input name="password" type="password" id="right"/></P>
<P><span class="title">Address</span> <input name="address" type="text" id="right"/></P>
<input type="submit" value="Sign Up">
</form>
</div>
</body>
</html>