-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create separate signup form for ui testing (#213)
- Loading branch information
Showing
8 changed files
with
95 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Autofill autoprompt for signin forms</title> | ||
<link rel="stylesheet" href="../style.css" /> | ||
</head> | ||
|
||
<body> | ||
<p><a href="../../index.html#autofill">[Home]</a></p> | ||
<nav> | ||
<ul class="nav"> | ||
<li><a href="./0-standard-signup-form.html">Sign up form present on pageload</a></li> | ||
<li><a href="./1-standard-login-form.html">Login form present on pageload</a></li> | ||
<li><a href="./2-form-in-modal.html">Login form in modal</a></li> | ||
<li><a href="./3-multistep-form.html">Multistep login form</a></li> | ||
<li><a href="./4-covered-form.html">With dialog covering the form</a></li> | ||
<li><a href="./5-form-with-text.html">Form below the fold on mobile but in sidebar on larger screens</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<p id="demo"></p> | ||
|
||
<div class=""> | ||
<form action="success.html" id="signup"> | ||
<h2>Password generation during signup</h2> | ||
<fieldset> | ||
<label for="email">Email</label> | ||
<input id="email" type="email"> | ||
<label for="password">Password</label> | ||
<input id="password" type="password" passwordrules="minlength: 5; maxlength: 10"> | ||
<label for="password-2">Password Confirmation</label> | ||
<input id="password-2" type="password" passwordrules="minlength: 5; maxlength: 10"> | ||
<button id="submit-signup" type="submit">Sign up</button> | ||
</fieldset> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Success</title> | ||
<link rel="stylesheet" href="../style.css" /> | ||
</head> | ||
|
||
<body> | ||
<p><a href="../../index.html#autofill">[Home]</a></p> | ||
<nav> | ||
<ul class="nav"> | ||
<li><a href="./0-standard-signup-form.html">Sign up form present on pageload</a></li> | ||
<li><a href="./1-standard-login-form.html">Login form present on pageload</a></li> | ||
<li><a href="./2-form-in-modal.html">Login form in modal</a></li> | ||
<li><a href="./3-multistep-form.html">Multistep login form</a></li> | ||
<li><a href="./4-covered-form.html">With dialog covering the form</a></li> | ||
<li><a href="./5-form-with-text.html">Form below the fold on mobile but in sidebar on larger screens</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<h1>Success</h1> | ||
|
||
<!-- Just need somewhere simple to go that isn't going to cause the autofil prompt to happen automatically | ||
so we can UI test it. --> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters