EmailFinder / templates /index.html
pradeepodela's picture
Upload index.html
647e69c
Raw
History Blame Contribute Delete
3.86 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is an AI Content Generator Tool Build by Skolo Online">
<meta name="author" content="Zatosh Nakamoto">
<title> Email predector </title>
<!-- Bootstrap core CSS -->
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Favicons -->
<link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', filename='images/favicon.png') }}">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="navbar-top-fixed.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<div class="container-fluid">
<a class="navbar-brand" style="text-align: center;" href="/">Pradeep's Email predector</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon">pradeep</span>
</button>
</div>
</nav>
<main class="container">
<div class="bg-light p-5 rounded mt-5">
<h1> 🐦 Email predector 🐦 ️</h1>
<p class="lead">
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.
</p>
<h2>Get the email ?</h2>
<form class="" action="/validate" method="post">
<div class="mb-3">
<label class="form-label">First Name</label>
<input required type="text" placeholder="EX: Ankur " class="form-control" name="firstname" >
<br>
<label class="form-label">Last name</label>
<input required type="text" placeholder="EX: warikoo" class="form-control" name="lastname" >
<label class="form-label">Domin</label>
<br>
<input required type="text" placeholder="EX: ankurwarikoo.com or gmail.com" class="form-control" name="domin" >
</div>
<button type="submit" class="btn btn-primary btn-lg"> 💃 Get Email</button>
</form>
</div>
<div class="p-3 rounded">
<div class="row">
<div class="col-lg-12">
<h3 class="lead">{{email}}</h3>
</div>
</div>
</div>
</main>
<!-- JavaScript Bundle with Popper -->
<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>
<footer class="bg-light text-center text-lg-start">
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(255, 255, 255, 0.2);">
© Copyright:
<a class="text-dark" href="http://pradeepodela.github.io/">Pradeep Odela. </a> All Rights Reserved
</div>
<!-- Copyright -->
</footer>
</body>
</html>