forked from ArjunVaskale/hackventoProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.php
More file actions
92 lines (88 loc) · 2.31 KB
/
registration.php
File metadata and controls
92 lines (88 loc) · 2.31 KB
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
<html>
<head>
<title>Registration Form</title>
<style>
body{
background-image: url(blur-clinic-health.jpg);
background-repeat: no-repeat;
background-size: cover;
}
h1{
color:blue;
font-size:60;
}
.table{
border-color: white;
}
input{
text-align:center;
background-color:teal;
color: white;
padding: 14px 20px;
margin: 8px 0;
border:none;
border-radius: 20px;
cursor: pointer;
font-size: 20px;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif ;
}
th,td{
text-transform: uppercase;
font-size: 20px;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif ;
}
select{
background-color:teal;
font-size: 20px;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif ;
color:white;
border-radius: 10px;
}
</style>
</head>
<body>
<center>
<h1 align="center">REGISTRATION FORM </h1>
<form method="post" action="register.php">
<table class=table >
<tr>
<th>
Name:</th><td> <input type="text" name="name"></td>
</tr><br>
<tr>
<th>Age:</th> <td> <input type="number" name="age"></td>
</tr><br>
<tr>
<th> Gender:</th> <td><input type="radio" name="gender" value="M">M
<input type="radio" name="gender" value="F"> F
</td>
</tr><br>
<tr>
<th>Contact no:</th><td> <input type="number" name="contact" value="+91"><br><br></td>
</tr><br>
<tr>
<th>Choose your Doctor:</th><td><select name="doctors">
<option value="0">
---Select---
</option>
<option value="Dr.Kailash Bhatia">
Dr.Kailash Bhatia
</option>
<option value="Dr.Ajay Tiwari">
Dr.Ajay Tiwari
</option>
<option value="Dr.Narendra Gokhale">
Dr.Narendra Gokhale
</option>
<option value="Dr.Girish Kumar">
Dr.Girish Kumar
</option>
</select>
</td>
</tr>
</table><br><br><br>
<input type="submit" value="Submit" align="center">
</form>
</center>
</body>
</html>