forked from coding-Studio-vbit/VBIT-studyMap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.html
159 lines (149 loc) · 3.4 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html>
<head>
<title>StudyMap</title>
<link rel="stylesheet" href="stylesheets/form.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="introlines">
<div align="">
<img src="images/sMlogo.png" id="sml">
<a href="https://www.codingstudio.club"><img src="images/black_png.png" id="csl"></a>
</div>
</div>
<div class="login-box">
<h2 style="border-bottom: 2px solid #4caf50;">Enter your details here</h2>
<form>
<div class="textbox">
<table >
<tr>
<td>
<strong><h4>Days left for exam:</h4></strong>
</td>
<td>
<input type="text" placeholder="Enter no. of days" name="" id="nod">
</td>
</tr>
</table>
</div>
<div class="textbox">
<table>
<tr>
<td style="border-bottom: 3px solid #4caf50; width: 90%;">
<strong><h3>Subject Priorities:</h3></strong>
</td>
</tr>
<tr>
<td>
<div>
<h4 id="sub1" class="subjnames"></h4>
</div>
</td>
<td>
<select id="s1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</td>
</tr>
<tr>
<td>
<h4 id="sub2" class="subjnames"></h4>
</td>
<td>
<select id="s2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</td>
</tr>
<tr>
<td>
<h4 id="sub3" class="subjnames"></h4>
</td>
<td>
<select id="s3">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</td>
</tr>
<tr>
<td>
<h4 id="sub4" class="subjnames"></h4>
</td>
<td>
<select id="s4">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</td>
</tr>
<tr>
<td>
<h4 id="sub5" class="subjnames"></h4>
</td>
<td>
<select id="s5">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</td>
</tr>
</table>
</div>
</form>
<br><button onclick="getVars()" class="btn" id="btnb">Submit</button>
<div id="demo" class="boxtext"></div>
</div>
<div id="tablec">
<div id="">
<table id="tablepart"></table>
</div>
</div>
<script type="text/javascript" src="scripts/form.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.22/pdfmake.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
</body>
</html>