-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (73 loc) · 4.21 KB
/
index.html
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
77
---
title: Test pages
script: stepsform.js
css: stepsform.css
lang: en
---
<!--step form code here//-->
<p>Plugin new name is: wb-steps-cra </p>
<div class="wb-frmvld provisional wb-steps-cra">
<form action="#" method="get" id="steps-example">
<fieldset id="client">
<legend>Client Information</legend>
<div>
<div class="form-group">
<label for="firstname" class="required"><span class="field-name">First name</span></label>
<input class="form-control" id="firstname" name="firstname" type="text" data-rule-minlength="2" required="required" />
</div>
<div class="form-group">
<label for="lastname" class="required"><span class="field-name">Last name</span></label>
<input class="form-control" id="lastname" name="lastname" type="text" data-rule-minlength="2" required="required" />
</div>
<div class="form-group">
<label for="dateOfBirth" class="required"><span class="field-name">Date of Birth</span><span class="datepicker-format"> (<abbr title="Four digits year, dash, two digits month, dash, two digits day">YYYY-MM-DD</abbr>)</span></label>
<input class="form-control" id="dateOfBirth" name="dateOfBirth" type="date" required="required" />
</div>
</div>
</fieldset>
<fieldset id="contact">
<legend>Contact Information</legend>
<div>
<div class="form-group">
<label for="preferredNumber" class="required">Preferred: <span class="field-name">Phone Number</span></label>
<input class="form-control" id="preferredNumber" name="preferredNumber" type="tel" data-rule-phoneUS="true" required="required" />
</div>
<div class="form-group">
<label for="secondaryNumber">Secondary: <span class="field-name">Phone Number</span></label>
<input class="form-control" id="secondaryNumber" name="secondaryNumber" type="tel" data-rule-phoneUS="true" />
</div>
<div class="form-group">
<label for="email"><span class="field-name">Email Address</span> (test@domain)</label>
<input class="form-control" id="email" name="email" type="email" />
</div>
</div>
</fieldset>
<fieldset id="questionaire">
<legend>Ethics Questionnaire</legend>
<div>
<p><small>For each of the following examples, indicate whether or not you feel that there is an ethical issue.</small></p>
<fieldset class="subfields">
<legend><span class="field-name">Ethics 1</span>: You pay $10.00 bucks for a purchase, but receive change for $20.00 bucks. Would you keep the extra money?</legend>
<div class="radio">
<label for="defNot-1"><input type="radio" name="ethics1" value="defNot-1" id="defNot-1"/> Definitely Not</label> 
<label for="probNot-1"><input type="radio" name="ethics1" value="probNot-1" id="probNot-1"/> Probably Not</label> 
<label for="maybe-1"><input type="radio" name="ethics1" value="maybe-1" id="maybe-1"/> Maybe (Not Sure)</label> 
<label for="probably-1"><input type="radio" name="ethics1" value="probably-1" id="probably-1"/> Probably</label> 
<label for="definitely-1"><input type="radio" name="ethics1" value="definitely-1" id="definitely-1"/> Definitely</label>
</div>
</fieldset>
<fieldset class="subfields">
<legend><span class="field-name">Ethics 2</span>: You need a software, but can't wait for office to make a decision. Against license restrictions would you download it?</legend>
<div class="radio">
<label for="defNot-2"><input type="radio" name="ethics2" value="defNot-2" id="defNot-2"/> Definitely Not</label> 
<label for="probNot-2"><input type="radio" name="ethics2" value="probNot-2" id="probNot-2"/> Probably Not</label> 
<label for="maybe-2"><input type="radio" name="ethics2" value="maybe-2" id="maybe-2"/> Maybe (Not Sure)</label> 
<label for="probably-2"><input type="radio" name="ethics2" value="probably-2" id="probably-2"/> Probably</label> 
<label for="definitely-2"><input type="radio" name="ethics2" value="definitely-2" id="definitely-2"/> Definitely</label>
</div>
</fieldset>
</div>
</fieldset>
<input type="submit" name="submit" value="Submit" class="btn btn-primary" />
</form>
</div>