| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html><head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <meta charset="utf-8">
- <title>Signup</title>
- </head>
- <body>
- <header>
- <nav>
- <ul>
- <li><a href="Signin.html">Signin</a></li>
- <li><a href="Signup.html">Signup</a></li>
- </ul>
- </nav>
- </header>
- <main>
- <h1>Signup</h1>
- <form action="Signin.html" method="get">
- <label for="login">Login</label> <input type="text" id="login" name="login">
- <label for="password">Password</label> <input type="password" id="password" name="password">
- <label for="confirm">Confirm password</label> <input type="password" id="confirm" name="confirm">
- <input type="submit" value="Connect me">
- </form>
- </main>
- </body></html>
|