forked from wegiveyoubrand/InstitutionPortal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
44 lines (44 loc) · 1.32 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./university_name.css" />
</head>
<body>
<div class="form-wrapper">
<h1>ADMIN PANEL</h1>
<form id="">
<div class="form-group">
<select name="" id="" disabled>
<option value="Federal" selected>Federal</option>
<option value="Federal">state</option>
<option value="Federal">private</option>
</select>
</div>
<div class="form-group">
<label for="">institution name</label>
<input type="text" />
</div>
<div class="form-group">
<label for="">short name</label>
<input type="text" />
</div>
<div class="form-group">
<label for="">cut-off mark</label>
<input type="number" />
</div>
<div class="form-group logo">
<label for="">Select Logo</label>
<input type="file" />
</div>
<div class="form-group">
<label for=""></label>
<input type="submit" value="Update" />
</div>
</form>
</div>
</body>
</html>