Added auth code form

This commit is contained in:
Lynne Megido 2018-11-12 20:59:48 +10:00
parent 7e8868eb5c
commit f439703f1a
Signed by: lynnesbian
GPG Key ID: FB7B970303ACE499

View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Curious Greg - Curious Cat Connection</title>
{% include 'imports.html' %}
</head>
<body>
<h1>Connect to Curious Cat</h1>
<h2>A question containing a challenge code has been submitted to your Curious Cat inbox. Please paste that code here.</h2>
<!-- <div id='logo-main'></div> -->
<form action='/internal/ccc_c' method='POST'>
<label for='challenge'>Response code</label><br />
<input name='challenge' type='number' required pattern='\d{6}' placeholder='123456'></input><br />
<button>Continue</button>
</div>
{% include 'footer.html' %}
</body>
</html>