-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
81 lines (74 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GenratrAPI - Free strong password generator API</title>
<meta name="description"
content="Generate strong random passwords with GenratrAPI. Customize password options using query parameters.">
<meta name="keywords" content="password generator, free API, random password, secure password, query parameters">
<meta name="robots" content="index, follow">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
min-height: 100vh;
}
.container {
text-align: center;
padding:30px;
top:10vh;
position: relative;
}
h1 {
color: #333;
}
p {
color: #666;
}
pre{
width: 100%;
overflow: auto;
height:50px;
}
a{
color: #fff;
background: #333;
padding:10px;
display: inline-block;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
ul{
margin-top:15px;
padding:0;
list-style:none;
display:flex;
justify-content: center
}
ul li{
margin-right:10px;
}
ul li:last-of-type{
margin-right:0px;
}
</style>
</head>
<body>
<div class="container">
<h1>GenratrAPI</h1>
<p>Generate random passwords with customizable options.</p>
<p>To generate a password, make a GET request to the root URL: <code>https://api.genratr.com</code></p>
<p>Pass query parameters to customize the password generation</p>
<pre><code>https://api.genratr.com/?length=16&uppercase&lowercase&special&numbers</code></pre>
<ul>
<li><a target="_blank" href="https://api.genratr.com/?length=16&uppercase&lowercase&special&numbers">Try it</a></li>
<li><a target="_blank" href="https://github.com/yavisht/GenratrAPI">Docs</a></li>
</ul>
</div>
</body>
</html>