-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (116 loc) · 2.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<title>Financepeer</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
color: #999;
background: #f5f5f5;
font-family: 'Roboto', sans-serif;
}
.form-control, .form-control:focus, .input-group-addon {
border-color: #e1e1e1;
border-radius: 0;
}
.signin-form {
width: 390px;
margin: 0 auto;
padding: 30px 0;
}
.signin-form h2 {
color: #636363;
margin: 0 0 15px;
text-align: center;
}
.signin-form .lead {
font-size: 14px;
margin-bottom: 30px;
text-align: center;
}
.signin-form form {
border-radius: 1px;
margin-bottom: 15px;
background: #fff;
border: 1px solid #f3f3f3;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
padding: 30px;
}
.signin-form .form-group {
margin-bottom: 20px;
}
.signin-form label {
font-weight: normal;
font-size: 13px;
}
.signin-form .form-control {
min-height: 38px;
box-shadow: none !important;
border-width: 0 0 1px 0;
}
.signin-form .input-group-addon {
max-width: 42px;
text-align: center;
background: none;
border-width: 0 0 1px 0;
padding-left: 5px;
}
.signin-form .btn {
font-size: 16px;
font-weight: bold;
background: #19aa8d;
border-radius: 3px;
border: none;
min-width: 140px;
outline: none !important;
}
.signin-form .btn:hover, .signup-form .btn:focus {
background: #179b81;
}
.signin-form a {
color:white;
text-decoration: none;
}
.signin-form a:hover {
text-decoration: underline;
}
.signin-form .fa {
font-size: 21px;
}
.signin-form .fa-paper-plane {
font-size: 17px;
}
.signin-form .fa-check {
color: #fff;
left: 9px;
top: 18px;
font-size: 7px;
position: absolute;
}
</style>
</head>
<body>
<div class="signin-form">
<form form action="/success.html" onsubmit="return true" method="POST">
<h2>Welcome to Financepeer</h2>
<div class="form-group">
<center>
<button type="button" value="New User?" class="btn"><a href="/signup.html" >Register</a></button>
</center>
</div>
<div class="form-group">
<center> <button type="button" value="Already Registered?" class="btn"><a href="/login.html">Already have an account ?</a></button>
</center>
</div>
</div>
</form>
</div>
</body>
</html>