This repository was archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
75 lines (64 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>login-php-tester - opentibiabr</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
<link rel="stylesheet" href="custom.css">
</head>
<body>
<main>
<section class="form">
<div class="container">
<div class="row">
<div class="column">
<div class="title">
<h2>login-php-tester</h2>
<div class="social">
<a class="github-button" href="https://github.com/opentibiabr/login-php-tester" data-size="large" data-show-count="true" aria-label="Star opentibiabr/login-php-tester on GitHub">Star</a>
<a class="github-button" href="https://github.com/opentibiabr/login-php-tester/fork" data-size="large" data-show-count="true" aria-label="Fork opentibiabr/login-php-tester on GitHub">Fork</a>
</div>
</div>
<form action="#" novalidate id="loginForm">
<fieldset>
<label for="endpointField">Endpoint</label>
<input type="text" value="http://127.0.0.1:8080/login.php" placeholder="please, type endpoint ending with login.php" id="endpointField">
<label for="accountNameField">Account Name <span class="disabledLabel"></span></label>
<input type="text" placeholder="please, type account name" id="accountNameField">
<label for="passwordField">Password <span class="disabledLabel"></span></label>
<input type="password" placeholder="please, type password" id="passwordField">
<div class="float-right">
<input type="checkbox" id="randomField">
<label class="label-inline" for="randomField">Use random credentials</label>
</div>
<input class="button-black" type="submit" value="Send">
</fieldset>
</form>
<div class="copyright">
<h6>proudly made by opentibiabr crew's <span class="heart">♥</span></h6>
</div>
</div>
</div>
</div>
</section>
<section class="output">
<div class="container">
<div class="row">
<div class="column">
<div class="header">
<h3 class="status"></h3>
<h5 class="requestedAt"></h5>
</div>
<pre class="response"></pre>
</div>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>