-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectChoice.html
107 lines (96 loc) · 2.78 KB
/
SelectChoice.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
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Curriculum Recommendation System</title>
<style type="text/css">
.background{
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
-webkit-filter: blur(35px); /* Safari 6.0 - 9.0 */
filter: blur(4px);
}
.auto_style1 {
flex-align:center;
width:300px;
height:20px;
outline:none;
border-radius:5px;
}
.auto_style1:focus {
border-radius:5px;
}
table {
// border-collapse:collapse;
border-spacing:25px;
}
select {
border-radius:13px;
border-width:medium;
width:200px;
height:25px;
font-weight:bold;
font-family:Cambria;
outline:none;
}
select:hover {
border-radius:13px;
border-color:HighlightText;
}
select:focus {
border-radius:13px;
border-color:blue;
}
.div_title {
width:100%;
height:100px;
background-color: rgba(0,0,0,0.1);
font-weight:bold;
font-size:30px;
color:red;
}
.auto_style2 {
height:35px;
width:100px;
outline:none;
border-radius:5px;
font-weight:bold;
font-size:20px;
color:white;
border-color:#005ce6;
background:#005ce6;
}
.auto_style2:hover {
border-color:#000099;
background:#003d99;
}
.auto_style2:active {
border-color:#ff6600;
}
</style>
</head>
<body >
<img class="background" src="/static/images/cur2.jpg" />
<div class="div_title" >
<br /> <center>CURRICULUM RECOMMENDATION SYSTEM</center>
</div>
<form method="get" action="http://127.0.0.1:5000/signup"><center>
<table class="auto_style1" border="0">
<tr>
<td><select name="selected_value" id="selected">
<option value="SELECT">SELECT CATEGORY</option>
<option value="Alumni">ALUMNI</option>
<option value="Corporate/Industry">CORPORATE/INDUSTRY</option>
<option value="Experts">EXPERT</option>
<option value="Faculty">FACULTY</option>
<option value="Student">STUDENT</option>
</select>
</td></tr>
<tr><td><input type="submit" value="submit"></td></tr>
</table>
</form>
</body>
</html>