summaryrefslogtreecommitdiff
path: root/views/partials/login.ejs
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-03 16:35:07 -0400
committerJules Laplace <jules@okfoc.us>2015-09-03 16:35:07 -0400
commit976bdace6704b60bc984635917ee56f17797c10a (patch)
treef2451b3f23c87d3e14c1eb8e3d92cda321db8103 /views/partials/login.ejs
parentf768ab296c07ce93efe9f2507cdf4b795aa10013 (diff)
able to log in
Diffstat (limited to 'views/partials/login.ejs')
-rw-r--r--views/partials/login.ejs19
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>