-
Notifications
You must be signed in to change notification settings - Fork 3
/
SignUp.html
31 lines (26 loc) · 1.08 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<meta name="description" content="We connect meetups with venues.">
<link href="css/bootstrap.css" rel="stylesheet">
<!-- <link href="css/bootstrap-responsive.css" rel="stylesheet"> -->
<link href="css/style.css" rel="stylesheet">
<link href="css/signup.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700' rel='stylesheet' type='text/css'>
<title>Browse Venue</title>
</head>
<body>
<div class="container_sm">
<h2>Sign Up to ESPACE</h2>
<form id="signup_form">
<input class="fullwidth" type="text" placeholder="Name">
<input class="fullwidth" type="text" placeholder="Email">
<input class="fullwidth" type="password" placeholder="Password">
<input class="fullwidth" type="password" placeholder="Confirm Password">
<input id="submit_btn" type="submit" class="btn btn-orange btn-huge btn-primary">
</form>
</div>
</body>
</html>