Fixed typo

This commit is contained in:
2020-12-29 01:04:13 +01:00
parent b026c4d7a7
commit 06752f6f30
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
<div class="warn">
<h2>SETTINGS</h2>
<form method="POST" action="./?settings">
<form id="settings" method="POST" action="./?settings">
<label for="osu_folder">osu! folder: </label>
<input type="text" id="osu_folder" name="osu_folder" placeholder="C:\Games\osu!" /><br />
<input type="text" form="settings" id="osu_folder" name="osu_folder" placeholder="C:\Games\osu!" /><br />
<p style="font-size:0.9em">(Use a fully qualified real path preferably without symlinks. Relative paths are supported in theory, but try to use absolute paths.)</p>
{{ SETTINGS_BACK }}
<input type="submit" value="Save" />
<input type="submit" form="settings" value="Save" />
</form>
<form id="cancelform" method="GET" action="./"></form>
</div>