-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (36 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>PyToMe</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet' href='http://cdn.muicss.com/mui-0.9.39/css/mui.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css'>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel mui-panel mui--z4 animated fadeInRight">
<div class="icon-wrapper">
<img class="mail" src="assets/img/letter.png"/>
</div>
<h1>PytoMe</h1>
<p>Sign up to be notify on all python jobs around the world.<br>
(For remote job or full time one)!</p>
<div class="InputAddOn">
<form action="http://127.0.0.1:5000/" method="get">
<input type="email" name="email" placeholder="Enter your Email"/>
<button class="InputAddOn-item" type="submit"><img src="assets/img/paper-plane.png"/></button>
</form>
</div>
</div>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/muicss/0.9.39/js/mui.min.js'></script>
</body>
</html>