-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetch_info_view.html
97 lines (89 loc) · 1.88 KB
/
fetch_info_view.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fetch Information - View</title>
<!-- Add your stylesheets and other head elements here -->
<link rel="stylesheet" href="path/to/your/styles.css">
<style>
/* Add your additional styles for this page if needed */
header {
background-color: #0e791e;
color: white;
padding: 15px;
text-align: center;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 8px;
}
select, input {
width: 100%;
padding: 10px;
margin-bottom: 16px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #333;
color: white;
padding: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #208b59;
}
main {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #0f6423;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
span {
font-size: 13px;
font-weight: bolder;
}
main {
text-align: left;
}
h2 {
margin-bottom: 20px;
}
</style>
</head>
<body>
<header>
<h2>Fetch Information - View</h2>
</header>
<main>
<form action="fetch_info_view.php" method="post">
<fieldset>
<label for="regNumber">Registration Number:</label>
<input type="text" name="regNumber" required>
</fieldset>
<button type="submit">Fetch Information</button>
</form>
</main>
<footer>
© 2024 KIIT University
</footer>
</body>
</html>