-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmission.html
77 lines (76 loc) · 2.62 KB
/
admission.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Welcome To Registration Form</title>
</head>
<body>
<h2 id="al">AUCA ADMITION FORM</h2>
<!-- Main div code -->
<div id="main">
<div class="h-tag">
<h2>Create Your Account</h2>
</div>
<!-- create account div -->
<div class="login">
<table cellspacing="2" align="center" cellpadding="8" border="0">
<tr>
<td align="right">Enter Name :</td>
<td><input type="text" placeholder="Enter Full Name" id="t1" class="tb" /></td>
</tr>
<tr>
<td align="right">Enter Email ID :</td>
<td><input type="text" placeholder="Enter Email ID here" id="t2" class="tb" /></td>
</tr>
<tr>
<td align="right">Mobile number :</td>
<td><input type="text" placeholder="Enter phone number" id="t3" class="tb" /></td>
</tr>
<tr>
<td align="right">dob :</td>
<td><input type="text" placeholder="Enter Dateof birth" id="t3" class="tb" /></td>
</tr>
<tr>
<td align="right">gender :</td>
<td><input type="text" placeholder="Gender" id="t3" class="tb" /></td>
</tr>
<tr>
<td align="right">address :</td>
<td><input type="text" placeholder="Enter your address" id="t3" class="tb" /></td>
<tr>
<td align="right">country :</td>
<td><input type="text" placeholder="Enter your country" id="t3" class="tb" /></td>
<tr>
<td align="right">course applied :</td>
<td><input type="text" placeholder="Enter course you applied for" id="t3" class="tb" /></td>
</tr>
<tr>
<td align="right">course applied :</td>
<td><input type="text" placeholder="Enter course you applied for" id="t3" class="tb" /></td>
</tr>
<tr>
<td align="right">course applied :</td>
<td><input type="text" placeholder="Enter phone number" id="t3" class="tb" /></td>
</tr>
<tr>
<td align="right">Enter Password :</td>
<td><input type="password" placeholder="Enter Password here" id="t4" class="tb" /></td>
</tr>
<tr>
<td align="right">Enter Confirm Password :</td>
<td><input type="password" placeholder="Confirm Password" id="t5" class="tb" /></td>
</tr>
<tr>
<td></td>
<td>
<input type="reset" value="Clear Form" onclick="clearFunc()" id="res" class="btn" />
<input type="submit" value="Submit" class="btn" onclick="registration()" /></td>
</tr>
</table>
</div>
<!-- create account box ending here.. -->
</div>
<!-- Main div ending here... -->
<script src="script.js"></script>
</body>
</html>