-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (93 loc) · 4.42 KB
/
index.html
File metadata and controls
119 lines (93 loc) · 4.42 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
<!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>Daily DSA Drill</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/5ee3ce69a5.js" crossorigin="anonymous"></script>
</head>
<body style="background-color: #706fd3;">
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div style="opacity: 100%;">
<div id="cf-contests" style="margin-top: 0.2vh;">
<h4><b>Codeforces Contests</b</h4>
<table id="table-container-cf" >
</table>
</div>
<div id="lc-contests">
<h4><b>Leetcode Contests</b</h4>
<table id="table-container-lc">
</table>
</div>
<div id="cc-contests">
<h4><b>Codechef Contests</b</h4>
<table id="table-container-cc" style="align-items: center;justify-content: center;">
</table>
</div>
<br>
<hr>
<br>
<div id="about" style="display: inline;">
<h2><b>About Developer</b</h2>
<a href="https://www.linkedin.com/in/pmodhe2001/">
<img src="assets/Dq_deadpool.jpg" height="200vh" width="200vw" style="border-radius: 50%;">
<h5><b>Prathmesh Modhe</b></h5>
</a>
</div>
</div>
</div>
<div style="display: flex;flex-direction: row-start;">
<span onclick="openNav()" style="font-size:30px;cursor:pointer;margin-left: 1vw;padding: 1.5vh 1vw 1.5vh 1vw;cursor: pointer;border-radius: 10%; display: flex;" ><img src="assets/side-bar-1.svg" height="40vh" width="40vw"></span>
<span onclick="darkMode()" id="toggleTheme" style="position: sticky; cursor: pointer;border-radius: 50%;padding: 1.2vh 1vw 1.5vh 1vw; margin-left: 70%;"><img src="assets/theme-icon.svg" height="50vh" width="50vw" ></span>
</div>
<div class="container mt-4">
<h1 class="display-4 text-center" style="color: #ecf0f1; margin-top: 2vh;">
<i class="fa-solid fa-code"></i>
Daily <span style="color: #f1c40f;"><b><u>DSA</u></b></span> Drill
</h1>
<form action="" id="form" style="margin-top: 8vh; color: #ecf0f1;">
<div class="form-group">
<label for="problem">Problem Name</label>
<input type="text" id="problem" class="form-control">
</div>
<div class="form-group">
<label for="link">Problem Link</label>
<input type="text" id="link" class="form-control">
</div>
<div class="form-group">
<label for="prio">Priority</label>
<input type="number" id="prio" class="form-control">
</div>
<br>
<input type="submit" value="Add Problem" class="btn btn-primary btn-block" style="background-color: #4cd137;">
</form>
<span onclick="openBot()"style="position: sticky;top: 4;margin-left: 60vw; padding: 1.5vh 1vw 1.5vh 1vw;cursor: pointer;border-radius: 10%;background-color:white
"><img src="assets/bot.svg" height="40vh" width="50vw">D-Bot</span>
<div id="bot" style="background-color: #ecf0f1;width: 0vw;">
<div id="bot-header"></div>
<div id="bot-body"></div>
<div id="bot-footer"></div>
</div>
<table class="table table-striped mt-5" style="color: #ecf0f1; font-size: 1.6vh;">
<thead>
<tr>
<th>Problem No</th>
<th>Platform Name</th>
<th>Problem Name</th>
<th>Priority <span><i class="fa-solid fa-chevron-up"></i></span>
<span><i class="fa-solid fa-chevron-down"></i></span></th>
</tr>
</thead>
<tbody id="problem-list" style="color: white;">
</tbody>
</table>
</div>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="app.js">
</script>
</body>
</html>