forked from MarseyWorld/MarseyWorld
fix
parent
f6eec6c860
commit
d9c7e2e962
|
@ -190,7 +190,9 @@
|
|||
<h2 class="font-bold text-lg font-heading leading-normal mb-2">Profile Anthem</h2>
|
||||
<form action="/settings/song_change" method="post">
|
||||
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
||||
<input type="text" name="song" class="block rounded shadow-inner px-2 py-1.5 text-gray-500 bg-gray-900 border border-gray-900 focus:bg-white focus:text-gray-900" value="{% if v.song %}https://youtu.be/{{v.song}}{% endif %}" placeholder='Enter a youtube video link here'>
|
||||
<div class="w-44">
|
||||
<input type="text" name="song" class="form-input" value="{% if v.song %}https://youtu.be/{{v.song}}{% endif %}" placeholder='Enter a youtube video link here'>
|
||||
</div>
|
||||
<small class="block mt-2 text-gray-400">Must be a youtube video link</small>
|
||||
<div class="mt-4">
|
||||
<input class="ml-auto btn btn-gray" type="submit" value="Change profile anthem">
|
||||
|
@ -205,7 +207,9 @@
|
|||
<h2 class="font-bold text-lg font-heading leading-normal mb-2">Username Color</h2>
|
||||
<form action="/settings/namecolor" id="color-code-form" method="post">
|
||||
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
||||
<input class="form-input" type="text" name="color" id="color-code" maxlength="6" value="{% if v.namecolor %}{{v.namecolor}}{% endif %}">
|
||||
<div class="w-44">
|
||||
<input class="form-input" type="text" name="color" id="color-code" maxlength="6" value="{% if v.namecolor %}{{v.namecolor}}{% endif %}">
|
||||
</div>
|
||||
<div class="mt-4">
|
||||
<input class="ml-auto btn btn-gray" type="submit" value="Change username color">
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue