-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (83 loc) · 3.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!--
______________________________________________________________________________________________
| |
| Copyright 2024 ag-sanjjeev |
| |
| The source code is licensed under MIT-style License. |
| The usage, permission and condition are applicable to this source code as per license. |
| That can be found in LICENSE file or at https://opensource.org/licenses/MIT. |
|______________________________________________________________________________________________|
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Styles -->
<!-- <link rel="stylesheet" type="text/css" href="./thirdparty/bootstrap/bootstrap.css" media="all"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/css/bootstrap.min.css" integrity="sha512-usVBAd66/NpVNfBge19gws2j6JZinnca12rAe2l+d+QkLU9fiG02O1X8Q6hepIpr/EYKZvKx/I9WsnujJuOmBA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="all" />
<!-- Custom Style -->
<link rel="stylesheet" type="text/css" href="./src/main.css" media="all">
<title>URL Validator</title>
</head>
<body class="">
<!-- Homoglyph Detector -->
<section class="container-fluid">
<!-- URL Validator Tool -->
<div class="row justify-content-center align-items-center vh-100">
<div class="col-md-5 col-lg-4 card rounded bg-light border border-primary app-container">
<!-- Form -->
<form action="#" method="post" id="url-validator-form">
<!-- URL Input -->
<div class="mb-3">
<label for="urlInput" class="label">URL Input</label>
<textarea name="urlInput" id="urlInput" class="form-control" rows="2" placeholder="Enter the web address" autofocus></textarea>
</div>
<!-- Validate URL Button -->
<button type="submit" class="btn btn-outline-primary w-100 mb-3">Validate URL</button>
</form>
<!-- Report -->
<div class="url-validator-report border-top border-primary">
<div class="report-section success" id="overview">
<small class="report-section-heading">Overview</small>
<p class="report-badge message"></p>
</div>
<div class="report-section success" id="protocol">
<small class="report-section-heading">Protocol</small>
<p class="report-badge message"></p>
</div>
<div class="report-section success" id="domain">
<small class="report-section-heading">Domain</small>
<p class="report-badge message"></p>
</div>
<div class="report-section success" id="urlparameters">
<small class="report-section-heading">URL Parameters</small>
<p class="report-badge message"></p>
</div>
</div>
<!-- Legend -->
<div class="d-flex justify-content-start gap-2 legend-container">
<div class="legend success">
<span class="circle"></span>
<span class="legend-message">Safe</span>
</div>
<div class="legend warning">
<span class="circle"></span>
<span class="legend-message">Moderate</span>
</div>
<div class="legend danger">
<span class="circle"></span>
<span class="legend-message">Danger</span>
</div>
</div>
</div>
</div>
<!-- Tool Information -->
</section>
<!-- Scripts -->
<!-- <script type="text/javascript" src="./thirdparty/bootstrap/bootstrap.bundle.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/js/bootstrap.bundle.min.js" integrity="sha512-72WD92hLs7T5FAXn3vkNZflWG6pglUDDpm87TeQmfSg8KnrymL2G30R7as4FmTwhgu9H7eSzDCX3mjitSecKnw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Custom Scripts -->
<script type="text/javascript" src="./src/main.js"></script>
</body>
</html>