-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
51 lines (48 loc) · 1.75 KB
/
index.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
<!DOCTYPE html>
<html lang=”en-GB”>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>Register</title>
<link rel="shortcut icon" href="https://www.dwyl.io/images/favicon.ico" type="image/x-icon">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ=="
crossorigin="anonymous">
</head>
<body class='center z-depth-2' style='margin-top:2em'>
<style>
.center {
margin: auto;
width: 90%;
padding: 10px;
}
.form-control {
font-size: 1.5em;
height: 1.8em;
}
</style>
<login>
<h3>Welcome to ACME Co! </h3>
<h4>Please <em>register</em> to use our awesome widgets!</h4>
<br>
<form class="form-horizontal" action="/register" method="POST">
<div class="form-group">
<label for="name" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input class="form-control" id="name" name="name" placeholder="Your Name">
</div>
</div>
<div class="form-group">
<label for="email" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" name="email" class="form-control" id="email" placeholder="Email address">
</div>
</div>
<div class="form-group pull-right">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn-success btn btn-lg">Register</button>
</div>
</div>
</form>
</login>
</body>
</html>