diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-03 16:35:07 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-03 16:35:07 -0400 |
| commit | 976bdace6704b60bc984635917ee56f17797c10a (patch) | |
| tree | f2451b3f23c87d3e14c1eb8e3d92cda321db8103 /views/partials/login.ejs | |
| parent | f768ab296c07ce93efe9f2507cdf4b795aa10013 (diff) | |
able to log in
Diffstat (limited to 'views/partials/login.ejs')
| -rw-r--r-- | views/partials/login.ejs | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/views/partials/login.ejs b/views/partials/login.ejs index 959468a..b5e8c04 100644 --- a/views/partials/login.ejs +++ b/views/partials/login.ejs @@ -1,11 +1,18 @@ <div id="login"> <form> - <label for="username">username</label> - <input type="text" id="username"> + <div> + <label for="username">username</label> + <input type="text" id="login-username" name="username"> + </div> - <label for="password">password</label> - <input type="password" id="password"> - - <button id="submit">LOGIN</button> + <div> + <label for="password">password</label> + <input type="password" id="login-password" name="password"> + </div> + + <div> + <label for="login-submit"></label> + <button id="login-submit">LOGIN</button> + </div> </form> </div> |
