forked from fossasia/meilix-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (73 loc) · 3.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/bootstrap.min.css') }}">
<link rel="stylesheet" href="{{ url_for('static',filename='css/menu.css') }}">
<script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script>
<script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
<title>Meilix Generator</title>
<link rel="shortcut icon" href="{{ url_for('static', filename='logo.png') }}">
</head>
<body>
<div class="open">
<span class="cls"></span>
<span>
<ul class="sub-menu ">
<li>
<a href="#about" title="about">About</a>
</li>
<li>
<a href="http://github.com/fossasia/meilix-generator/" title="Github">Github</a>
</li>
</ul>
</span>
<span class="cls"></span>
</div>
<!--file upload form-->
<form method="POST" enctype="multipart/form-data">
<div class="container">
<div class="row mt-3">
<div class="col-md-4 mx-auto">
<img src="{{ url_for('static', filename='logo.png') }}" class="img-rounded" alt="meilix generator" width="330"
height="314">
<h2 align="center">Meilix Generator</h2>
<p align="center">A webapp which can generate iso for you</p>
<div class="form-group">
<label for="email">Email:</label>
<input class="form-control" placeholder="Enter email" name="email" title="Email for sending the ISO"
required="" type="email">
</div>
<div class="form-group">
<label for="TRAVIS_TAG">Event Name:</label>
<input pattern="[A-Za-z0-9\s]{1,20}" class="form-control" placeholder="Enter event"
title="Event name to trigger build" name="TRAVIS_TAG"
required="" type="text">
</div>
<div class="form-group">
<label for="event_url">Event Link:</label>
<input pattern="https?://.+" class="form-control" placeholder="Enter event link" name="event_url"
title="this will be used as home page of the browser" required="" type="url">
</div>
<div class="col-md-06">
<div class="form-group">
<label>Upload Wallpaper:</label>
<label class="btn btn-secondary mx-auto btn-block btn-secondary">
<span style="white-space: pre-wrap;">Browse</span>
<input name="file" class="file form-control" title="Default Wallpaper Image" style="display: none;"
onchange="$(this).prev('span').text($(this).val()!=''?$(this).val():'Browse')" required=""
type="file">
</label>
<img id="file-upload">
</div>
</div>
<input class="btn btn-info mx-auto btn-block form-control" id="file-upload" value="Build" required=""
type="submit">
</div>
</div>
</div>
</form>
<script type="text/javascript" src="{{ url_for('static', filename='js/menu.js') }}"></script>
</body>
</html>