Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Admin form UI changes to "Edit Welcome" fields #2258

Merged
merged 2 commits into from
Jun 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,28 @@ <h2 class="modal-title">Edit Welcome</h2>

<div class="row"><br /></div>

<div class="row description">
<div class="col-md-12 label-custom label-medium label-bottom">
Color Theme
</div>
<div class="col-md-12 color-field">
<div ng-repeat="color in vm.colorThemes">
<label
ng-class="vm.myform.startPage.colorTheme === '{{color}}' ? 'selected-color-field' : ''"
class="{{color}}"
>
<input
type="radio"
value="{{color}}"
ng-model="vm.myform.startPage.colorTheme"
/>
</label>
</div>
</div>
</div>

<div class="row"><br /></div>

<div class="row question">
<div class="col-md-12 label-custom label-medium label-bottom">
Time Taken for Form (in minutes)
Expand Down Expand Up @@ -164,34 +186,13 @@ <h2 class="modal-title">Edit Welcome</h2>
ng-model="vm.myform.startPage.paragraph"
placeholder="e.g. 1) You will require your sales receipt to fill this reimbursement form."
name="paragraph"
rows="12"
></textarea>
</div>
</div>

<div class="row"><br /></div>

<div class="row description">
<div class="col-md-12 label-custom label-medium label-bottom">
Color Theme
</div>
<div class="col-md-12 color-field">
<div ng-repeat="color in vm.colorThemes">
<label
ng-class="vm.myform.startPage.colorTheme === '{{color}}' ? 'selected-color-field' : ''"
class="{{color}}"
>
<input
type="radio"
value="{{color}}"
ng-model="vm.myform.startPage.colorTheme"
/>
</label>
</div>
</div>
</div>

<div class="row"><br /></div>

<div class="modal-footer row">
<button
type="submit"
Expand Down