-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 1.31 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hammer++ Manager</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
</head>
<body>
<div class="titlebar">
<span class="titlebar__title">Hammer++ Manager</span>
<span class="titlebar__title" id="version">v1.0.0</span>
</div>
<form class="config">
<h3 class="config__pathto__header">
Настройка путей
</h3>
<input class="config__pathto" id="gmod_path" placeholder="Путь до папки GarrysMod">
<p>
<input class="config__save_button" id="save_config" type="submit" value="Сохранить">
</p>
</form>
<form class="content">
<h3 class="content__header">
Контент
</h3>
<div class="content__list" id="content_list">
</div>
<input class="content__newcontent_button" id="new_content" type="submit" value="Добавить">
</form>
<form class="start">
<input class="start__button" id="start_button" type="submit" value="Запустить Hammer++">
</form>
<div class="error" id="error">
</div>
<script src="script.js"></script>
</body>
</html>