forked from coding-Studio-vbit/VBIT-studyMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (142 loc) · 3.24 KB
/
index.html
File metadata and controls
148 lines (142 loc) · 3.24 KB
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
<!DOCTYPE html>
<html>
<head>
<title>StudyMap</title>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="login-box">
<h1>Study Map</h1>
<form>
<div class="textbox">
<table >
<tr>
<td>
Days left for exam:
</td>
<td>
<input type="text" placeholder="Enter no. of days" name="" id="nod">
</td>
</tr>
</table>
</div>
<div class="textbox">
<table>
<tr>
<td>
Subject names:
</td>
</tr>
<tr>
<td>
<input type="text" placeholder="Subject name" name="" value="" id="sub1">
</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>
<input type="Subject" placeholder="Subject name" name ="1" value="" id="sub2">
</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>
<input type="text" placeholder="Subject name" name="3" value="" id="sub3">
</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>
<input type="text" placeholder="Subject name" name="" value="" id="sub4">
</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>
<input type="text" placeholder="Subject name" name="" value="" id="sub5">
</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>
<p style="border: 1px solid black; padding: 10px;"><strong>* Note: Kindly create a schedule atleast 13 days prior to exam to have a satisfactory completion of the portion!</strong></p>
<h2 id="demo" style="text-align: center;"></h2>
<h2 id="demo2" style="text-align: center;"></h2>
</div>
<h2 id="demo3" style="text-align: center;"></h2>
<div id="tablec">
<div id="myTable">
<table id="tablepart"></table>
</div>
</div>
<script type="text/javascript" src="v1.js"></script>
</body>
</html>