-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
134 lines (122 loc) · 3.03 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Register</title>
</head>
<style>ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:white;
}
li {
float: right;
color:Blue;
}
ul li a
{
font-size:16px;
}
li a {
font-size: 16px;
display: block;
color: blue;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color:#ffcc00;
border-radius:30px;
}
.active {
background-color: #ffcc00;
border-radius:30px;
}
.button a{
border-radius:60px;
border: none;
color: White;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
background-color:Blue;
}
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
/* Overwrite default styles of hr */
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
.registerbtn {
background-color: #ffcc00;
color: white;
font-size:20px;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
.registerbtn:hover {
opacity:1;
}
a {
color: dodgerblue;
}
.container {
padding: 16px;
}
</style>
<body>
<ul>
<li class="button"><a href="info.html">Register</a></li>
<li ><a href="Contact.html">Contact</a></li>
<li><a href="About.html">About</a></li>
<li ><a class="active" href="Index.html">Home</a></li>
<li style="float:left;color:Black; font-size: 46px;">Oxgylinder</li>
</ul>
<hr>
<form style="box-sizing :border-box; font-family: Arial, Helvetica, sans-serif;" action="connection.php" method="post">
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Name</b></label>
<input type="text" placeholder="Enter Name" name="firstname" id="name" required>
<label for="email"><b>Name</b></label>
<input type="text" placeholder="Enter Name" name="lastname" id="name" required>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" id="email" required>
<label for="phone"><b>Phone</b></label>
<input type="text" placeholder="Enter phone" name="phn" id="phn" required>
<label for="Address"><b>Address</b></label>
<input type="text" placeholder="EnterAddress" name="ad" id="ad" required>
<label for="Price"><b>Price</b></label>
<input type="text" placeholder="Enter Price" name="pri" id="pri" required>
<label for="Pincode"><b>Pincode</b></label>
<input type="text" placeholder="Enter Pincode" name="pin" id="pin" required>
<hr>
<button type="submit" class="registerbtn">Register</button>
</div>
</form>
</body>
</html>