-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial journey to show how we might connect to their school systems. Needs to be looked at a bit more indepth with Marten
- Loading branch information
Showing
9 changed files
with
143 additions
and
8 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
82 changes: 82 additions & 0 deletions
82
app/views/mvp3/_school/school-manage/batch-checking/school-mis/select-mis.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{% extends "../../../../../layouts/layout-dfe-schoolnav.html" %} | ||
{% set pageName="Select your school management information system" %} | ||
|
||
{% block content %} | ||
|
||
|
||
|
||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l">{{pageName}}</h1> | ||
|
||
<p class="govuk-body"> | ||
Connect to your school management information system with your login details</p> | ||
<!-- <h2 class="govuk-heading-m">Connect to the ECE using your school system</h2> | ||
<p class="govuk-body">Fetch data using API from your School MIS to perform a batch check </p> | ||
</p> <img src="/public/images/mis-logos/arbor-logo.png" --> | ||
|
||
<div class="govuk-form-group"> | ||
<fieldset class="govuk-fieldset"> | ||
<!-- <legend class="govuk-fieldset__legend govuk-fieldset__legend--m"> | ||
<h2 class="govuk-fieldset"> Which system do you use </h2> | ||
</legend> --> | ||
<div class="govuk-radios__item"> | ||
<input class="govuk-radios__input" id="mis-arbor" name="mis" type="radio" value="arbor"> | ||
<label class="govuk-label govuk-radios__label" for="mis-arbor"> | ||
<div class="radio-content"> | ||
<img src="/public/images/mis-logos/arbor-logo.png" alt="Arbor logo" class="radio-button-image"> | ||
<span> </span> | ||
</div> | ||
</label> | ||
</div> | ||
|
||
<div class="govuk-radios__item"> | ||
<input class="govuk-radios__input" id="mis-sims" name="mis" type="radio" value="sims"> | ||
<label class="govuk-label govuk-radios__label" for="mis-sims"> | ||
<div class="radio-content"> | ||
<img src="/public/images/mis-logos/sims.png" alt="Arbor logo" class="radio-button-image"> | ||
<span> </span> | ||
</div> | ||
</label> | ||
</div> | ||
|
||
<div class="govuk-radios__item"> | ||
<input class="govuk-radios__input" id="mis-bromcom" name="mis" type="radio" value="bromcom"> | ||
<label class="govuk-label govuk-radios__label" for="mis-bromcom"> | ||
<div class="radio-content"> | ||
<img src="/public/images/mis-logos/Bromcom_block-logo-bg.png" alt="Bromcom logo" class="radio-button-image"> | ||
<span> </span> | ||
</div> | ||
|
||
</label> | ||
</div> | ||
<div class="govuk-radios__item"> | ||
<input class="govuk-radios__input" id="mis-scholar" name="mis" type="radio" value="scholar"> | ||
<label class="govuk-label govuk-radios__label" for="mis-scholar"> | ||
<div class="radio-content"> | ||
<img src="/public/images/mis-logos/scholar-pack-MIS-logo.jpg" alt="Scholarpack logo" class="radio-button-image"> | ||
<span> </span> | ||
</div> | ||
|
||
</label> | ||
</div> | ||
<div class="govuk-radios__item"> | ||
<input class="govuk-radios__input" id="mis-notlisted" name="whereDoYouLive" type="radio" value="not listed"> | ||
<label class="govuk-label govuk-radios__label" for="mis-notlisted"> | ||
Not listed | ||
</label> | ||
</div> | ||
</div> | ||
</fieldset> | ||
</div> | ||
</div> | ||
|
||
|
||
{{ govukButton({ | ||
text: "Continue to authorise your school system", | ||
classes: "govuk-button--primary", | ||
href: 'sims-login.html' | ||
}) }} | ||
|
||
{% endblock %} |
28 changes: 28 additions & 0 deletions
28
app/views/mvp3/_school/school-manage/batch-checking/school-mis/sims-login.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{% extends "../../../../../layouts/layout-dfe-schoolnav.html" %} | ||
{% set pageName="Unable to connect to your school system" %} | ||
|
||
{% block content %} | ||
|
||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l">{{pageName}}</h1> | ||
|
||
|
||
<div class="govuk-error-summary" data-module="govuk-error-summary"> | ||
<div role="alert"> | ||
<h2 class="govuk-error-summary__title"> | ||
There is a problem | ||
</h2> | ||
<div class="govuk-error-summary__body"> | ||
<ul class="govuk-list govuk-error-summary__list"> | ||
<li> <a href="/mvp3/_school/school-manage/batch-checking/upload"> | ||
Please contact your school if you think this is incorrect or choose another option to | ||
complete a batch check. | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
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