Create pages
Create pages by copying template files that come with the Prototype Kit.
Create a start page
Copy the start.html
file from docs/views/templates
to app/views
.
Preview the pages in your prototype by going to http://localhost:3000/NAME-OF-HTML-FILE in your web browser. For example, go to http://localhost:3000/start to preview start.html
.
Change the service name
You'll normally edit the HTML to make changes to pages, but the service name is in a config file. This is so we can change it in one place to update it on every page in your prototype.
- Open the
config.js
file in yourapp
folder. - Change
serviceName
fromService name goes here
toApply for a juggling licence
. - Press Cmd+S on Mac or Ctrl+S on Windows to save your change.
You must save every time you make a change to a file. In most code editors, a dot appears in the tab for any file that has unsaved changes.
Normally your changes will automatically show in the browser without refreshing. But for this config change, you need to refresh the page. You should see your service name change on the Start page.
Question pages
Make 2 copies of the question.html
file from docs/views/templates
to app/views
.
Rename the 2 file copies to:
juggling-balls.html
juggling-trick.html
Go to the following URLs to check your pages:
In the juggling-balls.html
file, change the text inside the h1
tag from Heading or question goes here
to How many balls can you juggle?
.
In the juggling-trick.html
file, change the text inside the h1
tag to What is your most impressive juggling trick?
.
'Check answers' page
Copy the check-answers.html
file from docs/views/templates
to app/views
.
Confirmation page
Copy the confirmation.html
file from docs/views/templates
to app/views
.