-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
142 lines (126 loc) · 5.5 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
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
140
141
142
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>login</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap/3.3.7/css/bootstrap-theme.min.css" >
<script src="js/jquery-3.5.1.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="js/bootstrap.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{
background-color: #f9f8fc;
}
.navbar-inverse{
border-radius: 0px;
}
.row_style{
margin-top: 10px;
}
.panel-heading{
text-align: center;
}
.content_c{
padding-top:150px;
}
.panel{
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #282828;
color: white;
text-align: center;
padding: 10px 10px 10px 10px ;
font-size: 16px;
}
</style>
</head>
<body>
<!--navigation bar fixed on the top-->
<div>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand"><span class="glyphicon glyphicon-thumbs-up"> </span> controlbudget</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="aboutme.html">
<span class="glyphicon glyphicon-info-sign"></span>
About-me
</a>
</li>
<li>
<a href="signup.html">
<span class="glyphicon glyphicon-user"></span> Sign-up
</a>
</li>
<li>
<a href="login.html"><span class="glyphicon glyphicon-log-in"></span>
Login</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- login -->
<div class="container content_c">
<div class="row row-centered">
<div class="col-xs-4">
</div>
<div class="col-xs-4 col-centered" >
<div class="panel panel-primary">
<div class="panel-heading">
SIGN-UP
</div>
<div class="panel-body">
<form method="POST" action="signup_god.php">
<div class="form-group">
<label for="name">Name:</label><br>
<input type="text" class="form-control" name="name" id="name" placeholder="name">
</div>
<div class="form-group">
<label for="email">Email:</label><br>
<input type="text" class="form-control" name="email" id="email" placeholder="Enter valid email">
</div>
<div class="form-group">
<label for="password">Password:</label><br>
<input type="text" class="form-control" name="password" id="password" placeholder="Atleast 6 characters">
</div>
<div class="form-group">
<label for="phone">Phone Number:</label><br>
<input type="integer" class="form-control" name="phone" id="phone" placeholder="enter a valid phone number">
</div>
<div class="form-group">
<a class="btn btn-primary btn-block" href="index.html">sign-in</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!--footer-->
<div class="footer">
<p>copyright@jayanthgandham/all rights reserved/contact us:9704647011</p>
</div>
</body>
</html>