-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
138 lines (135 loc) · 5.17 KB
/
main.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
<!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">
<link rel="stylesheet" href="./css/main.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>ITC Bootcamp</title>
</head>
<body>
<div class="container">
<aside>
<div class="logo">
<a href="#">
<img src="./images/ITClogoW.png" alt="ITClogo">
</a>
</div>
<div class="menu">
<a class="a active" href="#">
<i class='bx bx-home'></i>
<h3>Главная</h3>
</a>
<a href="#">
<i class='bx bxs-map'></i>
<h3>Филиалы</h3>
</a>
<a href="./courses.html">
<i class='bx bx-book-bookmark'></i>
<h3>Курсы</h3>
</a>
<a href="./students.html">
<i class='bx bx-user-circle'></i>
<h3>Студенты</h3>
</a>
<a href="./payment.html">
<i class='bx bx-money-withdraw'></i>
<h3>Оплаты</h3>
</a>
</div>
</aside>
<div class="loginform__container ifHidden">
<form action="" class="login__form ifHidden" id="login">
<h1>Login</h1>
<div class="login__username">
<input type="text" id="username" placeholder="Логин" maxlength="15">
<i class='bx bx-user'></i>
</div>
<div class="login__password">
<input type="text" id="password" placeholder="Пароль" maxlength="15">
<i class='bx bx-lock-open-alt'></i>
</div>
<button id="login__btn" type="submit">Войти</button>
</form>
</div>
<div class="content__box">
<div class="header">
<div class="header__login">
<button onclick="openLogin()" class="login__btn">
Login
</button>
<!-- <div class="login__text">
Hello, <span id="user__name">Daniel</span>
<h4>Студент</h4>
</div>
<img id="user__img" src="./images/depositphotos_12196477-stock-photo-smiling-men-isolated-on-the.jpg" alt=""> -->
</div>
</div>
<div class="table__box">
<div class="filter">
<div class="select__wrapper">
<select name="" id="select__count">
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
<option value="30">all</option>
</select>
</div>
<div class="search">
<label for="search" id="">Search:</label>
<input id="search" type="text">
</div>
</div>
<table class="content__table">
<thead>
<tr>
<th>ID</th>
<th>Имя</th>
<th>Оплата</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Салих</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>Салих</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>Салих</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>Салих</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>Салих</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>Салих</td>
<td>0</td>
</tr>
</tbody>
</table>
<div class="table__buttons">
<button>Previous</button>
<button>1</button>
<button>Next</button>
</div>
</div>
</div>
</div>
<script src="./js/main.js"></script>
</body>
</html>