23 lines
780 B
HTML
23 lines
780 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css')}}"" /> <!-- styles.css {{ url_for('static', filename='styles.css')}}-->
|
|
<title>DGS Avatar Study</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h2>Hello! Thank you for participating in our study!</h2>
|
|
<form action="http://localhost:5000/start" method="post">
|
|
<label for="terms-and-conditions">
|
|
<input class="inline" id="terms-and-conditions" type="checkbox" required name="terms-and-conditions" /> I accept the +terms and conditions</a>
|
|
</label>
|
|
|
|
<p><input id="submitbutton" type = "submit" value = "submit" /></p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |