forked from OpenWF/SpaceNinjaServer
fix(webui): use text type for email input (#2910)
We don't need the browser to validate the input because the game accepts emails with nothing before the @ which the browser may not. Reviewed-on: OpenWF/SpaceNinjaServer#2910 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
parent
db112ee5ed
commit
bac23a8465
@ -83,7 +83,7 @@
|
|||||||
<p data-loc="login_description"></p>
|
<p data-loc="login_description"></p>
|
||||||
<form onsubmit="doLogin();return false;">
|
<form onsubmit="doLogin();return false;">
|
||||||
<label for="email" data-loc="login_emailLabel"></label>
|
<label for="email" data-loc="login_emailLabel"></label>
|
||||||
<input class="form-control" type="email" id="email" required />
|
<input class="form-control" type="text" id="email" required />
|
||||||
<br />
|
<br />
|
||||||
<label for="password" data-loc="login_passwordLabel"></label>
|
<label for="password" data-loc="login_passwordLabel"></label>
|
||||||
<input class="form-control" type="password" id="password" required />
|
<input class="form-control" type="password" id="password" required />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user