diff options
Diffstat (limited to 'login-page/src/index.html')
| -rw-r--r-- | login-page/src/index.html | 28 |
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> |
