pradeepodela commited on
Commit
647e69c
·
1 Parent(s): 2f4bfdb

Upload index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +111 -0
templates/index.html ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <meta name="description" content="This is an AI Content Generator Tool Build by Skolo Online">
7
+ <meta name="author" content="Zatosh Nakamoto">
8
+ <title> Email predector </title>
9
+
10
+ <!-- Bootstrap core CSS -->
11
+ <!-- CSS only -->
12
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
13
+
14
+ <!-- Favicons -->
15
+ <link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', filename='images/favicon.png') }}">
16
+
17
+
18
+ <style>
19
+ .bd-placeholder-img {
20
+ font-size: 1.125rem;
21
+ text-anchor: middle;
22
+ -webkit-user-select: none;
23
+ -moz-user-select: none;
24
+ user-select: none;
25
+ }
26
+
27
+ @media (min-width: 768px) {
28
+ .bd-placeholder-img-lg {
29
+ font-size: 3.5rem;
30
+ }
31
+ }
32
+ </style>
33
+
34
+
35
+ <!-- Custom styles for this template -->
36
+ <link href="navbar-top-fixed.css" rel="stylesheet">
37
+ </head>
38
+ <body>
39
+
40
+ <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
41
+ <div class="container-fluid">
42
+ <a class="navbar-brand" style="text-align: center;" href="/">Pradeep's Email predector</a>
43
+ <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
44
+ <span class="navbar-toggler-icon">pradeep</span>
45
+
46
+ </button>
47
+ </div>
48
+ </nav>
49
+
50
+
51
+ <main class="container">
52
+ <div class="bg-light p-5 rounded mt-5">
53
+ <h1> 🐦 Email predector 🐦 ️</h1>
54
+ <p class="lead">
55
+ Want to know email of a person this tool makes your life easier. Just enter the first name , last name and coumpany domine of the person and the tool will give you the actual delivarible email address of the person.
56
+ </p>
57
+
58
+ <h2>Get the email ?</h2>
59
+
60
+ <form class="" action="/validate" method="post">
61
+
62
+ <div class="mb-3">
63
+ <label class="form-label">First Name</label>
64
+ <input required type="text" placeholder="EX: Ankur " class="form-control" name="firstname" >
65
+ <br>
66
+
67
+ <label class="form-label">Last name</label>
68
+ <input required type="text" placeholder="EX: warikoo" class="form-control" name="lastname" >
69
+ <label class="form-label">Domin</label>
70
+ <br>
71
+
72
+ <input required type="text" placeholder="EX: ankurwarikoo.com or gmail.com" class="form-control" name="domin" >
73
+
74
+
75
+
76
+ </div>
77
+
78
+
79
+ <button type="submit" class="btn btn-primary btn-lg"> 💃 Get Email</button>
80
+
81
+ </form>
82
+ </div>
83
+
84
+
85
+ <div class="p-3 rounded">
86
+ <div class="row">
87
+ <div class="col-lg-12">
88
+
89
+ <h3 class="lead">{{email}}</h3>
90
+
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </main>
95
+
96
+
97
+ <!-- JavaScript Bundle with Popper -->
98
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
99
+
100
+
101
+ <footer class="bg-light text-center text-lg-start">
102
+ <!-- Copyright -->
103
+ <div class="text-center p-3" style="background-color: rgba(255, 255, 255, 0.2);">
104
+ © Copyright:
105
+ <a class="text-dark" href="http://pradeepodela.github.io/">Pradeep Odela. </a> All Rights Reserved
106
+ </div>
107
+ <!-- Copyright -->
108
+ </footer>
109
+
110
+ </body>
111
+ </html>