-
Notifications
You must be signed in to change notification settings - Fork 0
/
myproject.html
79 lines (60 loc) · 2.47 KB
/
myproject.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My project</title>
<link rel="stylesheet" href="style_project.css" <meta charset="UTF-8">
<style>
/* Simple styling for the form */
.container {
max-width: 500px;
margin: auto;
}
.thank-you-message {
display: none;
color: green;
}
</style>
</head>
<body>
<!-- <div id="myproject">
<!-- <h1 ><b> My Project</b></h1> -->
<!-- </div> -->
<div class="container">
<h1>Your Institutional Details</h1>
<div class="thank-you-message" id="thankYouMessage">
<h2>Thank you for your submission!</h2>
<p id="submittedDetails"></p>
</div>
<form id="myForm">
<label for="name">Name: </label>
<input type="text" name="name" id="name" placeholder="write your name" required><br>
<label for="Fathername">Father Name: </label>
<input type="text" name="Fathername" id="Fathername" placeholder="your father name" required><br>
<label for="rollno">Roll NO: </label>
<input type="text" name="rollno" id="rollno" placeholder="write your rollno" required><br>
<label for="DOB">Date Of Birth: </label>
<input type="date" name="DOB" id="DOB" required><br>
<label>Your Gender:</label>
<label for="male">Male:
<input type="radio" name="Gender" id="male" value="male" required>
</label>
<label for="female"> female:
<input type="radio" name="Gender" id="female" value="female" required>
</label>
<label for="Institution">Intitution name </label>
<input type="text" name="Institution" id="Institution" placeholder="institution name"><br>
<label for="course">Course Detalis: </label>
<select id="course" name="course" required>
<option value="B.tech">B.tech</option>
<option value="M.tech">M.tech</option>
<option value="BBA">BBA</option>
<option value="MBA">MBA</option>
</select><br>
<input type="submit" value="submit">
</form>
</div>
<script src="submit02.js"></script>
</body>
</html>