aboutsummaryrefslogtreecommitdiff
path: root/login-page/src/index.html
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-01-08 21:06:43 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-01-08 21:06:43 +0200
commit502f5894709e648a85b2dfabb5f63aa4b0b61b71 (patch)
treec5b1a19a3288917996ed2bee5902e02033a59cf6 /login-page/src/index.html
parente2250190151e5f4601c1335dc3833f9ebb97798b (diff)
downloadcss-snippets-502f5894709e648a85b2dfabb5f63aa4b0b61b71.tar
css-snippets-502f5894709e648a85b2dfabb5f63aa4b0b61b71.tar.gz
css-snippets-502f5894709e648a85b2dfabb5f63aa4b0b61b71.zip
Added a login page with a preview gif
Diffstat (limited to 'login-page/src/index.html')
-rw-r--r--login-page/src/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/login-page/src/index.html b/login-page/src/index.html
new file mode 100644
index 0000000..51e896a
--- /dev/null
+++ b/login-page/src/index.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" href="styles.css">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>DevHive - Login</title>
+ </head>
+ <body>
+ <div id="content">
+ <div id="title">
+ Login
+ </div>
+ <hr>
+ <form>
+ <div class="input-selection">
+ <input type="text" placeholder="Username" required>
+ <label>Username</label>
+ </div>
+ <div class="input-selection">
+ <input type="password" placeholder="Password" required>
+ <label>Password</label>
+ </div>
+ <hr>
+ <button type="submit" value="Submit" id="submit-btn">Submit</button>
+ </form>
+ </div>
+ </body>
+</html>