Files
wehub-resource-sync 74c850a456
audiocraft_tests / Run tests (push) Has been cancelled
audiocraft_docs / Run docs (push) Has been cancelled
audiocraft_linter / Run linter (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:40:30 +08:00

29 lines
833 B
HTML

{% 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 %}