-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (75 loc) · 2.87 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SETA: Generador de calendario.</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body class="app">
<main class="app__main">
<section class="app__section app__data">
<div class="app__wrapper">
<h1 class="app__title">Generador de calendario <span class="app__version">v1.5.4</span></h1>
<form action="" class="form">
<div class="form__group">
<div class="form__row">
<label for="telegramInput" class="form__label">Mensaje de telegram:</label>
<textarea name="telegramInput" id="telegramInput" class="form__field form__textarea js__telegramInput"></textarea>
</div>
</div>
<fieldset class="app__customize">
<legend class="app__leyend">Personaliza el evento</legend>
<div class="form__group">
<div class="form__alarm">
<div class="form__row">
<label for="customAlarm" class="form__label">Alarma</label>
<input type="number" name="customAlarm" id="customAlarm" class="form__field form__field js__customAlarm">
<p class="form__note">Escribe 0 si no quieres una alarma</p>
</div>
</div>
<div class="form__call">
<div class="form__row">
<label for="callLink" class="form__label">Enlace de Zoom</label>
<input type="url" name="callLink" id="callLink" class="form__field form__field js__callLink">
<p class="form__note">Complétalo si lo sabes</p>
</div>
<div class="form__row">
<label for="callId" class="form__label">Id de reunión</label>
<input type="text" name="callId" id="callId" class="form__field form__field js__callId">
</div>
<div class="form__row">
<label for="callPwd" class="form__label">Código de acceso</label>
<input type="number" name="callPwd" id="callPwd" class="form__field form__field js__callPwd">
</div>
</div>
</div>
</fieldset>
<div class="form__row form__row--actions">
<ul class="app__form-actions">
<li class="app__form-action">
<button class="button js__generate-calendars" type="button">Generar eventos</button>
</li>
</ul>
</div>
</form>
</div>
</section>
<section class="app__section app__calendar js__ics" aria-hidden="true">
<div class="app__wrapper">
<h2 class="app__calendar-title accessible-hide">Eventos:</h2>
<ul class="app__calendar-events js__ics-events"></ul>
</div>
</section>
<section class="app__section app__event">
<div class="app__wrapper">
<code class="app__event-code">
<pre class="js__ics-code"></pre>
</code>
</div>
</section>
</main>
<script src="assets/js/app.js" type="module"></script>
</body>
</html>