-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 3.04 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 3.04 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Imhio - test task</title>
<meta name="description" content="Imhio - test task">
<meta name="author" content="xcurveballx">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="dst/css/main.css">
</head>
<body>
<header class="container-fluid text-white border-bottom border-warning shadow-sm">
<div class="row">
<div class="col-12 text-center px-2 py-5 bg-primary">
<h1 class="display-3">Email validation service</h1>
</div>
</div>
</header>
<main class="container">
<div class="row">
<div class="col-sm-12 py-5">
<p>
In order to check whether the given email is valid according to RFC 5322, 5321 and 3696, use this form. All the results will be output below the input field.
</p>
<form id="EmailChecker">
<!-- Prevent implicit submission of the form -->
<button type="submit" disabled class="d-none" aria-hidden="true"></button>
<div class="alert alert-danger d-none" role="alert">
<button type="button" class="close" aria-label="Close" onclick="this.parentNode.classList.add('d-none');">
<span aria-hidden="true">×</span>
</button>
<span></span>
</div>
<div class="form-group">
<label for="InputEmail">Email address</label>
<input type="email" class="form-control" id="InputEmail" aria-describedby="emailHelp" placeholder="Enter email to check">
<div class="valid-feedback d-none"></div>
<div class="invalid-feedback d-none"></div>
</div>
<button type="button" class="btn btn-primary">
<span class="spinner-border spinner-border-sm d-none" role="status" aria-hidden="true"></span>
<span>Check</span>
</button>
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</form>
</div>
</div>
</main>
<footer class="container-fluid text-white font-weight-light">
<div class="row">
<div class="col-12 text-center px-2 py-5 bg-primary">
Available under the MIT license. Author - <a class="text-white" href="https://github.com/xcurveballx" target="_blank">curveball</a> (©).
</div>
</div>
</footer>
<script src="dst/js/main.js"></script>
</body>
</html>