Skip to content

Commit c070255

Browse files
committed
Add a description of the apps usage to the home page
1 parent 45f2e23 commit c070255

File tree

1 file changed

+36
-2
lines changed

1 file changed

+36
-2
lines changed

app/views/home/index.html.erb

+36-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
1-
<h1>Home#index</h1>
2-
<p>Find me in app/views/home/index.html.erb</p>
1+
<h1 class="govuk-heading-l">Welcome</h1>
2+
<p class="govuk-body">
3+
This is a prototype tool that demonstrates how a web application could be used by users
4+
to build an ESDA submission in a number of steps and via web forms.
5+
</p>
6+
<p class="govuk-body">
7+
The advantages of this approach are:
8+
</p>
9+
<ul class="govuk-list govuk-list--bullet">
10+
<li>
11+
Each entry is provided with it's own form. This give a place where text can be added
12+
to described to the user what information is required for each entry.
13+
</li>
14+
<li>
15+
Validation can be applied for each entry. This give immediate (on submission) feedback
16+
on any problems with the input. That feedback will be specific to the current entry
17+
so will be easier to understand.
18+
</li>
19+
<li>
20+
Tools such as selection lists and check boxes can be used to ensure users are only
21+
provided with compatible options.
22+
</li>
23+
<li>
24+
The tool is hosted on a single web host. That means version control is easier.
25+
When the central host app is updated, the update applies to all users.
26+
</li>
27+
<li>
28+
Submission are stored in a central database so can be shared as needed, or passed
29+
to additional services (the data marketplace for example) as required.
30+
</li>
31+
</ul>
32+
33+
<p class="govuk-body">
34+
You can find existing examples a the <%= govuk_link_to 'Items page', items_path %>,
35+
or <%= govuk_link_to 'click here', new_item_path %> to build a new ESDA.
36+
</p>

0 commit comments

Comments
 (0)