mirror of
https://github.com/Laxilef/OTGateway.git
synced 2025-12-10 18:24:27 +05:00
fix: removed `required` attribute for optional parameters on settings page #128
This commit is contained in:
@@ -43,12 +43,12 @@
|
||||
<div class="grid">
|
||||
<label>
|
||||
<span data-i18n>settings.portal.login</span>
|
||||
<input type="text" name="portal[login]" maxlength="12" required>
|
||||
<input type="text" name="portal[login]" maxlength="12">
|
||||
</label>
|
||||
|
||||
<label>
|
||||
<span data-i18n>settings.portal.password</span>
|
||||
<input type="password" name="portal[password]" maxlength="32" required>
|
||||
<input type="password" name="portal[password]" maxlength="32">
|
||||
</label>
|
||||
</div>
|
||||
|
||||
@@ -511,7 +511,7 @@
|
||||
<div class="grid">
|
||||
<label>
|
||||
<span data-i18n>settings.mqtt.user</span>
|
||||
<input type="text" name="mqtt[user]" maxlength="32" required>
|
||||
<input type="text" name="mqtt[user]" maxlength="32">
|
||||
</label>
|
||||
|
||||
<label>
|
||||
|
||||
Reference in New Issue
Block a user