Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <link href="/Css/style.css" rel="stylesheet" type="text/css" />
- <script src="main.js"></script>
- <title>Sign Up</title>
- </head>
- <body>
- <div id=container>
- <div class="logo">
- <h2>Miss Quote</h2>
- </div>
- <form name="myForm" id="myForm" action="login.html" class="register-form" method="post">
- <h1>Sign up</h1>
- <div>
- <label for="username">Username</label>
- <input id="username" type="text" name="username" required >
- </div>
- <div>
- <label for="password">Password</label>
- <input id="password" name="password" type="password">
- </div>
- <label for="confirm_password">Confirm Password</label>
- <div>
- <input id="confirm_password" type="password" name="password" >
- <input type="submit" name="" value="Sign up">
- </div>
- </form>
- <div class="terms_conditions">
- <p>By creating an account, you agree to the <a href="">Terms and Conditons</a> </p>
- </div>
- <div class="account_exist">
- <p>Already a member? <a href="login.html">Sign In</a></p>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement