forked from fossasia/meilix-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.html
47 lines (33 loc) · 1.29 KB
/
build.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
{% extends 'layout.html' %}
{% block body %}
<div class="alert alert-danger" >
<strong>Success!</strong> Email will be sent with the downloadable ISO link once it is ready
</div>
<main>
<div class="msg">1</div>
<section class="envelope-top"></section>
<section class="envelope-left"></section>
<section class="envelope-right"></section>
</main>
<div class="container" id="mail-box">
<div class="alert alert-info" >
<strong>Check your Email Now</strong>
<div class="container-fluid">
<div class="row">
<a class="col-sm-3" target="_blank" href="https://www.gmail.com">
<img id='mail' width="130" src="{{ url_for('static',filename='gmail.png') }}">
</a>
<a class="col-sm-3" target="_blank" href="https://outlook.com">
<img id='mail' width="130" src="{{ url_for('static',filename='outlook.png') }}">
</a>
<a class="col-sm-3" target="_blank" href="https://overview.mail.yahoo.com/">
<img id='mail' width="130" src="{{ url_for('static',filename='yahoo.jpeg') }}">
</a>
<a class="col-sm-3" target="_blank" href="https://mail.protonmail.com/">
<img id='mail' width="130" src="{{ url_for('static',filename='proton.jpeg') }}">
</a>
</div>
</div>
</div>
</div>
{% endblock %}