-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidv_testing.html
More file actions
76 lines (64 loc) · 2.67 KB
/
idv_testing.html
File metadata and controls
76 lines (64 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html lang="en">
<head>
<style>
body {
font-family: Arial, sans-serif;
}
label {
display: inline-block;
width: 160px;
padding: 5px;
}
div {
padding: 5px;
margin-bottom: 10px;
}
</style>
<title>IDV testing</title>
</head>
<body>
<h1>IDV testing</h1>
<p><a href="index.html">Up</a></p>
You can set the values returned from the simulated IDV flow.<br>
Before these values will take effect you must enable the feature in the Debug settings screen of the app.
<form action="idv/v2/success.html" method="get">
<h4>Status</h4>
<div>
<input type="radio" id="success" name="status" value="success" checked="checked">
<label for="success">Success</label><br>
<input type="radio" id="name_mismatch" name="status" value="name_mismatch">
<label for="name_mismatch">Name Mismatch</label><br>
<input type="radio" id="failed" name="status" value="failed">
<label for="failed">Failed</label><br>
</div>
<h4>Attempts and Resets</h4>
<div>
<label for="attempts_remaining">Attempts remaining:</label>
<input type="number" id="attempts_remaining" name="attempts_remaining" value="3"><br>
<label for="can_attempt_again">Can attempt again?</label>
<input type="checkbox" id="can_attempt_again" name="can_attempt_again" checked="checked"><br>
<label for="resets_remaining">Resets remaining:</label>
<input type="number" id="resets_remaining" name="resets_remaining" value="3"><br>
<label for="can_reset">Can reset?</label>
<input type="checkbox" id="can_reset" name="can_reset" checked="checked"><br>
</div>
<h4>Acceptable Names</h4>
<div>
These values are only applicable for status of Name Mismatch<br><br>
<label for="first_name0">First name:</label>
<input type="text" id="first_name0" name="first_name" value="Ted"><br>
<label for="last_name0">Last name:</label>
<input type="text" id="last_name0" name="last_name" value="Bear"><br>
<label for="first_name1">First name:</label>
<input type="text" id="first_name1" name="first_name" value="Fred"><br>
<label for="last_name1">Last name:</label>
<input type="text" id="last_name1" name="last_name" value="Bear"><br>
<label for="first_name2">First name:</label>
<input type="text" id="first_name2" name="first_name" value="Teddy"><br>
<label for="last_name1">Last name:</label>
<input type="text" id="last_name2" name="last_name" value="Tischbier"><br>
</div>
<input type="submit" value="Submit">
</form>
</body>
</html>