76 lines
2.6 KiB
HTML
76 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<!--<html lang="en">-->
|
|
<html lang="pl-PL">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Python Flask App</title>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="signup.css">
|
|
<!-- <link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> -->
|
|
|
|
<link href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel="stylesheet">
|
|
<link href="../static/css/signup.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="../static/css/calendar.css">
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="header">
|
|
<nav>
|
|
<ul class="nav nav-pills pull-left">
|
|
<li><img src="/static/logo.jpg" alt="Logo" height="150" width="150" border="5" style="padding: 25px;"></li>
|
|
<!--<form><input type="button" value="Back" onClick="history.go(-1);return true;"></form>-->
|
|
<!--<li role="presentation" class="active"><input type="button" value="Back" onClick="history.go(-1);return true;">
|
|
</li>-->
|
|
<!--<li role="presentation" class="active"><form action="http://google.com"><input type="button" value="Wstecz" onClick="history.go(-1);return true;"></form></li>-->
|
|
</ul>
|
|
<ul class="nav nav-pills pull-right">
|
|
<li role="presentation" class="active"><a href="/logout">Wyloguj</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<h3 class="text-muted"><center>Python Flask</center></h3>
|
|
</div>
|
|
|
|
<div class="jumbotron" style="height: 550px;">
|
|
<h1>{{test}}</h1>
|
|
<form class="form-signin" action="/test" method="post">
|
|
{% for question in questions %}
|
|
<div class="col-xs-12">
|
|
</br>
|
|
{{ question[1] }}
|
|
</br>
|
|
A) {{ question[2] }}
|
|
</br>
|
|
B) {{ question[3] }}
|
|
</br>
|
|
C) {{ question[4] }}
|
|
</br>
|
|
D) {{ question[5] }}
|
|
</br>
|
|
|
|
<input type="text" maxlength="1" name="inputAnswer{{ questions.index(question)|string}}" width="10px"></input>
|
|
</br>
|
|
<input type="submit" value="Zakończ test" class="btn-success"></input>
|
|
|
|
</div>
|
|
{% endfor %}
|
|
</form>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<footer class="footer">
|
|
<p>© UAM 2018</p>
|
|
</footer>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |