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