<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Register - Temperature Alarm</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/styles/register.css"> <script type="module" src="/scripts/register.js"></script> </head> <body> <div class="container"> <form id="registerForm"> <div class="form-container"> <h1>Create Account</h1> <label for="email"><b>Email</b></label> <input type="email" placeholder="Enter email "id="email" required> <label for="uname"><b>Username</b></label> <input type="text" placeholder="Enter username" id="uname" required> <label for="psw"><b>Password</b></label> <input type="password" placeholder="Enter password" id="psw" required> <label for="rpsw"><b>Repeat Password</b></label> <input type="password" placeholder="Enter password again" id="rpsw" required> <button type="submit">Register</button> <div class="loginText"> <label> Already have an account? <a href="./home.html">Login</a> </label> </div> </div> </form> </div> </body> </html>