| 1234567891011121314151617181920212223 |
- <div>
- <form onsubmit="basicInfoObj.submit()">
- <h1> Please Sign Up </h1>
- <h3 class="link"> Do You need Sign In? </h3>
- <label id="nameLabel">Name
- <input class="input" id="regName" type="text">
- </label>
- <label>Email
- <input type="text" id="regEmail" type="email" required>
- </label>
- <label>Password
- <input type="password" id="regPass" type="password" required>
- </label>
- <label>Confirm Password
- <input type="password" id="regConfirmPass" type="password" required>
- </label>
- <input type="submit" value="Continue">
- </form>
- </div>
|