-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
139 lines (95 loc) · 4.89 KB
/
sign-up.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="googlebot" content="index,follow">
<!-- Title -->
<title>DAI — decentralized Stable cryptocurrency payments</title>
<!-- Templates core CSS -->
<link href="stylesheets/application.css" rel="stylesheet">
<!-- Favicons -->
<link href="images/favicon/favicon.png" rel="shortcut icon">
<link href="images/favicon/apple-touch-icon-57-precomposed.png" rel="apple-touch-icon">
<link href="images/favicon/apple-touch-icon-72-precomposed.png" rel="apple-touch-icon" sizes="72x72">
<link href="images/favicon/apple-touch-icon-144-precomposed.png" rel="apple-touch-icon" sizes="114x114">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Modernizr Scripts -->
<script src="javascript/vendor/modernizr-2.7.1.min.js"></script>
</head>
<body class="sign-in-up" id="to-top">
<!-- Sign In/Sign Up section -->
<section class="sign-in-up-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Logo -->
<figure class="text-center">
<a href="./index.html">
<img class="img-logo" src="images/logo.png" alt="">
</a>
</figure> <!-- /.text-center -->
</div> <!-- /.col-md-12 -->
</div> <!-- /.row -->
<section class="sign-in-up-content">
<div class="row">
<div class="col-md-12">
<h4 class="text-center">Create an account</h4>
<form class="sign-in-up-form" action="./sign-up.html" role="form">
<!-- Input 1 -->
<div class="form-group">
<input class="form-control" id="exampleInputName1" type="text" placeholder="Your name">
</div> <!-- /.form-group -->
<!-- Input 2 -->
<div class="form-group">
<input class="form-control" id="exampleInputEmail3" type="email" placeholder="Enter email address">
</div> <!-- /.form-group -->
<!-- Input 3 -->
<div class="form-group">
<input class="form-control" id="exampleInputPassword2" type="password" placeholder="Password">
</div> <!-- /.form-group -->
<!-- Button -->
<button class="btn btn-success btn-block" type="submit">Sign Up</button>
<!-- Checkbox -->
<section class="text-center">
<div class="checkbox">
<label>
<input type="checkbox"> I agree to <a href="#fakelinks">Terms</a> and <a href="#fakelinks">Privacy Policy</a>
</label>
</div> <!-- /.checkbox -->
</section> <!-- /.text-center -->
<!-- Sign In/Sign Up links -->
<section class="sign-in-up-links text-center">
<p>Already have an account? <a href="./sign-in.html">Sign In here</a></p>
</section> <!-- /.sign-in-up-links -->
</form> <!-- /.sign-in-up-form -->
</div> <!-- /.col-md-12 -->
</div> <!-- /.row -->
</section> <!-- /.sign-in-up-content -->
<div class="row">
<div class="col-md-12">
<section class="footer-copyright text-center">
<p><strong>Daipay DAI</strong> <br>Ethereum blockchain <br>Maker</p>
</section> <!-- /.footer-section -->
</div> <!-- /.col-md-12 -->
</div> <!-- /.row -->
</div> <!-- /.container -->
</section> <!-- /.sign-in-up-section -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="javascript/vendor/jquery-2.1.0.min.js"></script>
<script src="javascript/bootstrap.min.js"></script>
<script src="javascript/assets/application.js"></script>
</body>
</html>