-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar.html
57 lines (54 loc) · 3.5 KB
/
calendar.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="icon" type="image/png" href="favicon.png">
<title>Экспорт расписания в календарь</title>
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" as="style">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap">
<script defer src="./common.js"></script>
<script src="./database.js" type="module"></script>
<script defer src="./calendar.js"></script>
<link rel="stylesheet" href="colors.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="calendar.css">
</head>
<body style="margin: 0; background: var(--bg-color); color: var(--text-color)">
<div style="min-height: 100vh; display: flex; flex-direction: column; align-items: stretch">
<div class="header">Экспорт расписания в календарь</div>
<div class="content">
<div>
1. Заполните данные о периоде обучения:
<div style="padding-left: 2ch; padding-top: 0.1rem; line-height: 1.1lh">
начало <input type="text" maxlength="10" id="start-date">, знаменатель<input type="checkbox" id="first-week">;
<br>конец <input type="text" maxlength="10" id="end-date">.
</div>
</div>
<p>
2. Скачайте файл расписания своей подгруппы:
<a href="javascript:;" id="file1" class="link">1 подгруппа</a>,
<a href="javascript:;" id="file2" class="link">2 подгруппа</a>
</p>
<p class="warning-text" style="display: none">
</p>
<p>
3. Создайте календарь для импорта: <a href="https://support.google.com/calendar/answer/37095?hl=ru" target="blank" class="link" style="white-space: nowrap;">Создание календаря в Google</a>,
(Яндекс.Календарь создаёт автоматически)
</p>
<p>
4. Импортируйте расписание в календарь:
<a class="link" href="https://calendar.google.com/calendar/u/0/r/settings/export" target="_blank" id="google-cal">Google Календарь</a>,
<a class="link" href="https://yandex.ru/support/calendar/common/create.html#import" target="_blank" id="yandex-cal">Яндекс.Календарь</a>
</p>
</div>
<div id="footer">
<a class="link no-select" href="./index.html" target="_blank">Создать расписание</a>
<a class="link no-select" href="./fix.html" target="_blank">Расписание из текста</a>
<a class="link no-select" href="./help-page.html" target="_blank">Помощь</a>
<a class="link no-select" href="https://github.com/GroupTimetable/GroupTimetable.github.io" target="_blank">GitHub</a>
</div>
</div>
</body>
</html>