-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookings_registration_form.htm
96 lines (91 loc) · 5.5 KB
/
bookings_registration_form.htm
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!-- BOOKINGS MODAL STEP 2 -->
<div class="modal modal--book" id="bookings-registration-form" tabindex="-1" role="dialog" aria-labelledby="modal-bookLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="modal-bookLabel">{% T Make your booking %}</h3>
</div>
<div class="modal-body">
<form class="form form--book" data-bind="with: coworker">
<div class="form-group required">
<label for="FullName">{% T Full name %}</label>
<input type="text" required="required" class="form-control" id="FullName" data-bind="value: FullName">
<small class="help-block validation-error" data-bind="validationMessage: FullName"></small>
</div>
<div class="row" style="margin-left: -15px; margin-right: -15px">
<div class="col-sm-6">
<div class="form-group required">
<label for="Email">{% T Email address %}</label>
<input type="email" required="required" class="form-control" id="Email" data-bind="value: Email">
<small class="help-block validation-error" data-bind="validationMessage: Email"></small>
</div>
</div>
<div class="col-sm-6">
<div class="form-group required">
<label for="MobilePhone">{% T Phone %}</label>
<input type="text" required="required" class="form-control" id="MobilePhone" data-bind="value: MobilePhone">
<small class="help-block validation-error" data-bind="validationMessage: MobilePhone"></small>
</div>
</div>
</div>
<div class="form-group required">
<label for="Address">{% T Address %}</label>
<input type="text" required="required" class="form-control" id="Address" data-bind="value: Address">
<small class="help-block validation-error" data-bind="validationMessage: Address"></small>
</div>
<div class="row" style="margin-left: -15px; margin-right: -15px">
<div class="col-sm-4">
<div class="form-group required">
<label for="postCode">{% T Postcode / Zip code %}</label>
<input type="text" required="required" class="form-control" id="PostCode" data-bind="value: PostCode">
<small class="help-block validation-error" data-bind="validationMessage: PostCode"></small>
</div>
</div>
<div class="col-sm-4">
<div class="form-group required">
<label for="CityName">{% T Town / City %}</label>
<input type="text" required="required" class="form-control" id="CityName" data-bind="value: CityName">
<small class="help-block validation-error" data-bind="validationMessage: CityName"></small>
</div>
</div>
<div class="col-sm-4">
<div class="form-group required">
<label for="State">{% T State / Province %}</label>
<input type="text" required="required" class="form-control" id="State" data-bind="value: State">
<small class="help-block validation-error" data-bind="validationMessage: State"></small>
</div>
</div>
</div>
<div class="row" style="margin-left: -15px; margin-right: -15px">
<div class="col-sm-4">
<div class="form-group ">
<label for="TaxIDNumber">{% T TAX/VAT Number %}</label>
<input type="text" class="form-control" id="TaxIDNumber" data-bind="value: TaxIDNumber">
<small class="help-block validation-error" data-bind="validationMessage: TaxIDNumber"></small>
</div>
</div>
<div class="col-sm-8">
<div class="form-group">
<label for="BillingEmail">{% T Send Invoice To %}</label>
<input type="email" class="form-control" id="BillingEmail" data-bind="value: BillingEmail">
<small class="help-block validation-error" data-bind="validationMessage: BillingEmail"></small>
</div>
</div>
</div>
<div class="alert alert--danger alert--icon" role="alert" data-bind="visible: $root.coworker.errors().length > 0">
<i class="fa fa-exclamation-circle"></i>
<b>
{% T Please complete or correct the form details %}
</b>
</div>
<div class="btn-toolbar form-actions">
<button class="btn btn--primary btn--sm" data-bind="click: $root.validateRegistration" type="button">Continue</button>
<a href="#" class="btn btn--link btn--sm" data-bind="click: $root.closeRegistationForm">Cancel</a>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- END BOOKINGS MODAL STEP2 -->