-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (86 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Registration form</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="main">
<div class="register">
<h1><u>Registration Form</u></h1>
<form action="successful.html">
<label>Full Name :</label>
<input type="text" name="fname" id="name" placeholder=" Enter Your Full Name"><br><br>
<br>
<label>Hallticket :</label>
<input type="text" name="hallticket"
id="name" placeholder=" Enter Your Full Name">
<br><br>
<lable>Gender :</lable>
<input type="radio" name="gender"
id="male">
<id="male">Male</span>
<input type="radio" name="gender"
id="fele">
<span id="female">Female</span>
<input type="radio" name="gender"
id="Other">
<span id="Other">Other</span>
<br><br>
<lable>Email id :</lable>
<input type="email" name="email"
id="name" placeholder="example@gmail.com">
<br><br>
<label>Password :</label>
<br>
<input type="password" name="password"
id="name" placeholder="Set Password">
<br><br>
<lable>Confirm Password :</lable>
<br>
<input type="Confirm Password" name="Confirm Password"
id="name" placeholder="Confirm Password">
<br><br>
<lable>Branch :</lable>
<br>
<select>
<option>Select Your Branch</option>
<option value="AIML">AIM(Arificial Intelligence machine learning)</option>
<option value="CSE">CSE(Computer science engineering)</option>
<option value="DS">DS(Data science)</option>
</select>
<br><br>
<label>Address :</label>
<br>
<input type="text" name ="addresss"
id="name" placeholder="Enter your Addrress">
<br><br>
<label>Upload Photo</label> <input type="file" x-ref="file" @change="fileName = $refs.file.files[0].name" name="img[]" class="d-none">
<br><br>
<div class="container">
<div class="input-group shadow">
<br>
<input type="submit" value="Submit">
<input type="Reset"> <input id="cancelButton" style="" onclick="cancelButton_Click" type="button" value="Cancel">
</form>
</div>
<br>
<br>
</div>
</div>
</form>
</div>
</div>
<script>
function clearForm() {
document.getElementById("input-name").value = "";
document.getElementById("input-email").value = "";
}
</script>
</body>
</html>