20 lines
777 B
HTML
20 lines
777 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 0 - Nothing</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, but without something to submit</p>
|
|
<form action="http://localhost:5000/send_json" method="post">
|
|
<input type="hidden" name="submittedString" value="Hello, backend!">
|
|
<input id="submitbutton" type = "submit" value = "submit";/>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |