24 lines
532 B
HTML
24 lines
532 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Libre Captcha</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="header">
|
||
|
<h1>Libre Captcha</h1><hr>
|
||
|
<h2>Open Source solution to Captchas</h2>
|
||
|
<h3>v0.2 (Beta)</h3>
|
||
|
</div>
|
||
|
<div class="form">
|
||
|
<input type="text" id="email" placeholder="email">
|
||
|
<input type="button" id="reg-btn" value="Register">
|
||
|
<!-- <p id="token"></p> -->
|
||
|
</div>
|
||
|
<div class="secret">
|
||
|
<h4 id="token"></h4>
|
||
|
</div>
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|