|
1 | 1 | <!doctype html>
|
2 | 2 | <html lang="en">
|
3 |
| - <head> |
4 |
| - <meta charset="UTF-8"> |
5 |
| - <meta name="viewport" content="width=device-width, initial-scale=1"> |
6 |
| - <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/bootstrap.min.css') }}"> |
7 |
| - <link rel="stylesheet" href="{{ url_for('static',filename='css/menu.css') }}"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/bootstrap.min.css') }}"> |
| 7 | + <link rel="stylesheet" href="{{ url_for('static',filename='css/menu.css') }}"> |
8 | 8 |
|
9 |
| - <script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script> |
10 |
| - <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script> |
11 |
| - <title>Meilix Generator</title> |
12 |
| - <link rel="shortcut icon" href="{{ url_for('static', filename='logo.png') }}"> |
13 |
| - </head> |
14 |
| - <body> |
| 9 | + <script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script> |
| 10 | + <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script> |
| 11 | + <title>Meilix Generator</title> |
| 12 | + <link rel="shortcut icon" href="{{ url_for('static', filename='logo.png') }}"> |
| 13 | +</head> |
| 14 | +<body> |
15 | 15 |
|
16 |
| - <div class="open"> |
17 |
| - <span class="cls"></span> |
18 |
| - <span> |
| 16 | +<div class="open"> |
| 17 | + <span class="cls"></span> |
| 18 | + <span> |
19 | 19 | <ul class="sub-menu ">
|
20 | 20 | <li>
|
21 | 21 | <a href="#about" title="about">About</a>
|
|
25 | 25 | </li>
|
26 | 26 | </ul>
|
27 | 27 | </span>
|
28 |
| - <span class="cls"></span> |
29 |
| - </div> |
| 28 | + <span class="cls"></span> |
| 29 | +</div> |
30 | 30 |
|
31 |
| - <!--file upload form--> |
32 |
| - <form method="POST" enctype="multipart/form-data"> |
33 |
| - <div class="container"><div class="row mt-3"> |
34 |
| - <div class="col-md-4 mx-auto"> |
35 |
| - <img src="{{ url_for('static', filename='logo.png') }}" class="img-rounded" alt="meilix generator" width="330" height="314"> |
36 |
| - <h2 align="center">Meilix Generator</h2> |
37 |
| - <p align="center">A webapp which can generate iso for you</p> |
38 |
| - <div class="form-group"> |
39 |
| - <label for="email">Email:</label> |
40 |
| - <input class="form-control" placeholder="Enter email" name="email" required="" type="email"> |
41 |
| - </div> |
42 |
| - <div class="form-group"> |
43 |
| - <label for="TRAVIS_TAG">Event Name:</label> |
44 |
| - <input pattern="[A-Za-z0-9\s]{1,20}" class="form-control" placeholder="Enter event" name="TRAVIS_TAG" required="" type="text"> |
45 |
| - </div> |
| 31 | +<!--file upload form--> |
| 32 | +<form method="POST" enctype="multipart/form-data"> |
| 33 | + <div class="container"> |
| 34 | + <div class="row mt-3"> |
| 35 | + <div class="col-md-4 mx-auto"> |
| 36 | + <img src="{{ url_for('static', filename='logo.png') }}" class="img-rounded" alt="meilix generator" width="330" |
| 37 | + height="314"> |
| 38 | + <h2 align="center">Meilix Generator</h2> |
| 39 | + <p align="center">A webapp which can generate iso for you</p> |
| 40 | + <div class="form-group"> |
| 41 | + <label for="email">Email:</label> |
| 42 | + <input class="form-control" placeholder="Enter email" name="email" title="Email for sending the ISO" |
| 43 | + required="" type="email"> |
| 44 | + </div> |
| 45 | + <div class="form-group"> |
| 46 | + <label for="TRAVIS_TAG">Event Name:</label> |
| 47 | + <input pattern="[A-Za-z0-9\s]{1,20}" class="form-control" placeholder="Enter event" |
| 48 | + title="Event name to trigger build" name="TRAVIS_TAG" |
| 49 | + required="" type="text"> |
| 50 | + </div> |
46 | 51 |
|
47 |
| - <div class="form-group"> |
48 |
| - <label for="event_url">Event Link:</label> |
49 |
| - <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" > |
50 |
| - </div> |
| 52 | + <div class="form-group"> |
| 53 | + <label for="event_url">Event Link:</label> |
| 54 | + <input pattern="https?://.+" class="form-control" placeholder="Enter event link" name="event_url" |
| 55 | + title="this will be used as home page of the browser" required="" type="url"> |
| 56 | + </div> |
51 | 57 |
|
52 |
| - <div class="col-md-06"> |
53 |
| - <div class="form-group"> |
54 |
| - <label>Upload Wallpaper:</label> |
55 |
| - <label class="btn btn-secondary mx-auto btn-block btn-secondary"> |
56 |
| - <span>Browse</span> |
57 |
| - <input name="file" class="file form-control" style="display: none;" onchange="$(this).prev('span').text($(this).val()!=''?$(this).val():'Browse')" required="" type="file"> |
58 |
| - </label> |
59 |
| - <img id="file-upload"> |
60 |
| - </div> |
61 |
| - </div> |
62 |
| - <input class="btn btn-info mx-auto btn-block form-control" id="file-upload" value="Build" required="" type="submit"> |
63 |
| - </div> |
64 |
| - </div> |
65 |
| - </div> |
66 |
| - </form> |
| 58 | + <div class="col-md-06"> |
| 59 | + <div class="form-group"> |
| 60 | + <label>Upload Wallpaper:</label> |
| 61 | + <label class="btn btn-secondary mx-auto btn-block btn-secondary"> |
| 62 | + <span>Browse</span> |
| 63 | + <input name="file" class="file form-control" title="Default Wallpaper Image" style="display: none;" |
| 64 | + onchange="$(this).prev('span').text($(this).val()!=''?$(this).val():'Browse')" required="" |
| 65 | + type="file"> |
| 66 | + </label> |
| 67 | + <img id="file-upload"> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + <input class="btn btn-info mx-auto btn-block form-control" id="file-upload" value="Build" required="" |
| 71 | + type="submit"> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | +</form> |
67 | 76 |
|
68 |
| - <script type="text/javascript" src="{{ url_for('static', filename='js/menu.js') }}"></script> |
| 77 | +<script type="text/javascript" src="{{ url_for('static', filename='js/menu.js') }}"></script> |
69 | 78 |
|
70 |
| - </body> |
| 79 | +</body> |
71 | 80 | </html>
|
72 | 81 |
|
0 commit comments