mirror of
https://github.com/arnaucube/goCaptcha.git
synced 2026-02-07 03:26:41 +01:00
implemented javascript library, with css. Just need to call library and place a <div> in the html to use goCaptcha
This commit is contained in:
34
web/index.html
Normal file
34
web/index.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>goCaptcha</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="goCaptcha.css">
|
||||
</head>
|
||||
<body>
|
||||
<br>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3"></div>
|
||||
<div class="col-sm-6">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading c_blue300">
|
||||
<h3 class="panel-title">goCaptcha</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div id="goCaptcha"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var goCaptchaURL = "http://127.0.0.1:3025";
|
||||
</script>
|
||||
<script src="goCaptcha.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user