-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathindex.template.html
39 lines (35 loc) · 1.2 KB
/
index.template.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
<body>
<div class="container">
<div>
<div class="w-100">
<label class="field-label">Preview</label>
<div class="preview" id="preview"></div>
</div>
<div class="w-100 d-flex flex-column" style="margin-top: 16px">
<label class="field-label">Coloque o tweet 😍</label>
<textarea
placeholder="Messagem do tweet aqui :D"
id="tweetValue"
class="field-textarea">
</textarea>
</div>
<div class="w-100 d-flex flex-column" style="margin-top: 16px">
<label class="field-label">Template</label>
<select class="w-100 form-select" id="template"></select>
</div>
<div class="w-100 d-flex align-items-stretch toolbar">
<button class="btn-copy flex-1" id="buttonCopy" type="button">
Copiar!
</button>
<button class="btn-save flex-1" id="buttonDownload" type="button">
Baixar!
</button>
</div>
</div>
</div>
<script src="libs/dom-to-image.min.js"></script>
<script src="scripts/persons.js"></script>
<script src="scripts/helpers.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/main.js"></script>
</body>