-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
45 lines (45 loc) · 1.98 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Democracy Earth : incoruptible governance for small and large communities. A global common of peer.</title>
<link href="https://bootswatch.com/paper/bootstrap.min.css" rel="stylesheet" media="screen" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link href="css/style.css" rel="stylesheet" media="screen" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic" rel="stylesheet" type="text/css">
<script src="script.js"></script>
</head>
<body>
<!-- page content -->
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="index.html"><img src="assets/olive-spaced.png" width="25" height="25">Democracy Earth Foundation</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="login.html">LOGIN</a></li>
<li><a href="signup.html">SIGN UP</a></li>
</ul>
</div>
</nav>
<center>
<i class="fa fa-user fa-3x"></i>
<h2>Sign up</h2>
</center>
<section class="center">
<div class="form-group">
<label class="control-label" for="focusedInput">Name or alias</label>
<input class="form-control" id="focusedInput" value="Real or virtual identity" type="text">
</div>
<div class="form-group">
<label class="control-label" for="focusedInput">Email</label>
<input class="form-control" id="focusedInput" value="[email protected]" type="text">
</div>
<div class="form-group">
<label class="control-label" for="focusedInput">Password</label>
<input class="form-control" id="focusedInput" value="The longer the better..." type="text">
</div>
<center><a href="" class="btn btn-yey">Sign up</a></center>
</section>
</body>
</html>