forked from fossasia/meilix-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.html
71 lines (49 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Meilix Generator Email Notification</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="{{ url_for('static',filename='css/email.css') }}">
</head>
<body>
<div class="custom-navbar">
<div class="alert alert-info" >
<a id="title" href='.'>
<strong>Meilix Generator</strong>
</a>
</div>
</div>
<br>
<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">
<div class="alert alert-info" >
<strong>Check your Email Now</strong>
<div class="container-fluid">
<div class="row">
<a class="col-3" target="_blank" href="https://www.gmail.com">
<img id='mail' src="{{ url_for('static',filename='gmail.png') }}">
</a>
<a class="col-3" target="_blank" href="https://outlook.com">
<img id='mail' src="{{ url_for('static',filename='outlook.png') }}">
</a>
<a class="col-3" target="_blank" href="https://overview.mail.yahoo.com/">
<img id='mail' src="{{ url_for('static',filename='yahoo.jpeg') }}">
</a>
<a class="col-3" target="_blank" href="https://mail.protonmail.com/">
<img id='mail' src="{{ url_for('static',filename='proton.jpeg') }}">
</a>
</div>
</div>
</div>
</div>
</body>
</html>