This commit is contained in:
Aevann1 2022-03-26 14:04:28 +02:00
parent 7ae0b83358
commit 5b7c4a487b
8 changed files with 20 additions and 20 deletions

View file

@ -17,7 +17,7 @@
<label for="link-input">Usernames</label>
<input autocomplete="off" id="link-input" type="text" class="form-control mb-2" name="u1" value="{{u1.username if u1 else ''}}" placeholder="User 1">
<input autocomplete="off" id="link-input" type="text" class="form-control mb-2" name="u2" value="{{u2.username if u2 else ''}}" placeholder="User 2">
<input autocomplete="off" type="submit" value="Submit" class="btn btn-primary">
<input type="submit" value="Submit" class="btn btn-primary">
</form>
{% if u1 and u2 %}
@ -77,7 +77,7 @@
<input type="hidden" name="formkey" value="{{v.formkey}}">
<input type="hidden" name="u1" value="{{u1.id}}">
<input type="hidden" name="u2" value="{{u2.id}}">
<input autocomplete="off" type="submit" id="linkbtn" class="btn btn-primary d-none" value="Confirm Link: {{u1.username}} and {{u2.username}}">
<input type="submit" id="linkbtn" class="btn btn-primary d-none" value="Confirm Link: {{u1.username}} and {{u2.username}}">
</form>
{% endif %}