-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathauth-grant.php
executable file
·39 lines (38 loc) · 1.63 KB
/
auth-grant.php
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
<?php
require_once('config.inc.php');
require_once('secure.inc.php');
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<?php require('head.php') ?>
<title>Grant auth | QuickAuth</title>
</head>
<body>
<div class="wrapper">
<?php require('header.php'); ?>
<?php require('modals.php'); ?>
<div class="container">
<div id="auth_grant" class="panel panel-default">
<h3>Grant following site to access your account</h3>
<span class="text-info" id="auth-grant-host">example.com</span>
<form id="form-auth" action="javascript:void(0)">
<h4>Information to be accessed</h4>
* <label for="form-auth-openid"></label><input type="checkbox" id="form-auth-openid" class="form-group"
checked disabled/> <span>OpenID</span><br/>
* <label for="form-auth-email"></label><input type="checkbox" id="form-auth-email" class="form-group"/> <span>Email</span><br/>
* <label for="form-auth-verified"></label><input type="checkbox" id="form-auth-verified"
class="form-group"/> <span>Verified</span><br/>
* <label for="form-auth-role"></label><input type="checkbox" id="form-auth-role" class="form-group"/> <span>Role</span><br/>
<br/>
<button id="form-auth-accept" type="button" class="btn btn-primary"> Accept </button>
<button id="form-auth-decline" type="button" class="btn btn-default"> Decline </button>
</form>
</div>
</div> <!-- /container -->
<!--This div exists to avoid footer from covering main body-->
<div class="push"></div>
</div>
<?php require('footer.php'); ?>
</body>
</html>