25 lines
887 B
HTML
25 lines
887 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>Test Page 1 - Datenschutzerklaerung</title>
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<p>This is just a test page for the single page option of the json configuration</p>
|
|
<form action="http://localhost:5000/send_json" method="post">
|
|
<input
|
|
type="checkbox"
|
|
id="accepted"
|
|
name="accepted"
|
|
value="checked" />
|
|
<label for="accepted">Akzeptieren sie die Datenschutzerklaerung</label>
|
|
<p><input id="submitbutton" type = "submit" value = "submit";/></p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |