mirror of
https://github.com/supleed2/ICAS.git
synced 2024-12-22 14:05:47 +00:00
Add verify.html, missing form
This commit is contained in:
parent
dba2d34660
commit
8f9f082135
110
html/verify.html
Normal file
110
html/verify.html
Normal file
|
@ -0,0 +1,110 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta https-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!--Setup Bootstrap CSS-->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
||||
<!--Setup Override CSS-->
|
||||
<link rel="stylesheet" href="style.css">
|
||||
|
||||
<!--Site icon and title-->
|
||||
<link rel="icon" type="image/png" href="favicon.ico">
|
||||
<title>IC Anime Society</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
|
||||
aria-expanded="false" aria-controls="navbar">
|
||||
<span class="sr-only">Toggle Navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a href="index.html">
|
||||
<img src="images/logo.png" id="logo">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbar" class="navbar-collapse collapse">
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
|
||||
<li>
|
||||
<a href="index.html">Home</a>
|
||||
</li>
|
||||
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
|
||||
aria-expanded="false">About Us<span class="caret"></span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="about.html">Who we are</a></li>
|
||||
<li><a href="committee.html">Committee</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
|
||||
aria-expanded="false">What we Do<span class="caret"></span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="manga.html">Manga club</a></li>
|
||||
<li><a href="library.html">Manga Library</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a
|
||||
href="https://www.imperialcollegeunion.org/shop/club-society-project-products/animesoc-products">Join
|
||||
Now!</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Title bar -->
|
||||
<div class="jumbotron top-item">
|
||||
<div class="container">
|
||||
<h1>Automatic Verification</h1>
|
||||
<p>This page allows you to easily prove Imperial student status</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Page Contents -->
|
||||
<div class="container">
|
||||
<h1>Verification Form</h1>
|
||||
<p>When you submit the form below, your Imperial login details are checked using the Union login page and then
|
||||
discarded, the only data saved is whether the login succeeded and your Imperial shortcode, to be connected
|
||||
to your Discord account by Nano.</p>
|
||||
<p>We don't want to ever know your login details as that's a whole GDPR and security nightmare. The code for
|
||||
this website and the verification system is available on <a
|
||||
href="https://github.com/supleed2/ICAS">GitHub</a>.</p>
|
||||
<br><br>
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="footer-text">
|
||||
Join our <a href="http://discord.gg/BgwDD69">Discord</a> server.
|
||||
Sign up to our <a href="https://mailman.ic.ac.uk/mailman/listinfo/animesoc-list">mailing list</a>.
|
||||
</span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!--Bootstrap Javascript-->
|
||||
<!--=======================================================================-->
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue