diff options
author | Marvin Borner | 2020-10-01 16:45:33 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-01 16:45:33 +0200 |
commit | ce6a00fa25bd12774fa86ee384e840565ecf965b (patch) | |
tree | 8a4e2e1d719f7a3a26330dd4b9c46b08b150e779 /auth/public | |
parent | f2b0241434ff2ba4e461235a4c5d905487e537d1 (diff) |
Added quotes frontend
Diffstat (limited to 'auth/public')
-rw-r--r-- | auth/public/index.html | 2 | ||||
-rw-r--r-- | auth/public/style.css | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/auth/public/index.html b/auth/public/index.html index b016ac6..8bf9ecd 100644 --- a/auth/public/index.html +++ b/auth/public/index.html @@ -18,7 +18,7 @@ <fieldset> <legend>Login</legend> <label for="username">Username</label> - <input name="email" type="email" id="username" placeholder="Username" /> + <input name="username" type="text" id="username" placeholder="Username" /> <label for="password">Passwort</label> <input name="password" type="password" id="password" placeholder="Passwort" /> <label for="remember" class="pure-checkbox"> diff --git a/auth/public/style.css b/auth/public/style.css index f7e5f23..7cb346f 100644 --- a/auth/public/style.css +++ b/auth/public/style.css @@ -20,7 +20,8 @@ form { background: white; } -input:not([type="checkbox"]) { +input:not([type="checkbox"]), +button { width: 100%; } |