File size: 833 Bytes
29792f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
{% extends "base.html" %}
{% block content %}
<p>
Welcome <span class="special">{{session['user']}}</span> to the internal MOS assistant for AudioCraft.
You can create custom surveys between your models, that you can
evaluate yourself, or with the help of your teammates, by simply
sharing a link!
</p>
{% for error in errors %}
<p class="error">{{error}}</p>
{% endfor %}
<form method="post" action="{{url_for('index')}}" class="simple_form">
<div>
<label for="xps"> Space separated lists of XP SIGS or Grid names:
</label><br>
<textarea autofocus name="xps" rows="4" cols="30"></textarea>
</div>
<div>
<label> Blind study
<input type="checkbox" name="blind">
</label>
</div>
<input type="submit" value="Create study">
<form>
{% endblock %}
|