代写COMPSCI 345编程、代写HTML, CSS编程语言、Java程序代写代写留学生 Statistics统计、回归、迭代|代写留学生Processin

COMPSCI 345 / SOFTENG 350
Assignment 2: Registration form for a book club website
Worth 30% of your final grade
This assignment will be completed individually
Each student should plan to spend 15 hours on this assignment
Upload your submission to Canvas and to Assignment Dropbox
Due by 11am on Monday 31 May
Aim
The aims of this assignment are to develop a hi-fi prototype design as a mockup Web
interface. The assignment allows you to practice skills in high fidelity design, Web
technology, HTML, CSS, and JavaScript. It will also require you to put the visual design
principles discussed in class into practice. Lastly, the assignment demands that you adopt
an inclusive design practice by taking web accessibility into consideration.
Figure 1 Screenshot taken from original homepage of the book club website
Figure 2 Example PDF-format Registration Form which was downloaded from the original
website BPD
Background
The login or registration form is usually one of the first elements we see on a website – the
first impression visitors get from the organization or service. The efficiency of the website
navigation and such online forms is what can make or break the relationship between the
brand and its audience. A combination of usability, visual appeal and accessibility will make
sure the visitors get the most out of your site, building the foundation for an exceptional user
experience.
Imagine that you’ve been asked to redesign a website “Book Program Discussion (BPD)
1

and registration form for a non-profit organisation that lends books and professional
discussion notes to participating book groups. BPD also wants a new logo, which they are
contracting out to a design firm. Please include a placeholder logo for a new logo which
matches the new colour scheme. Groups make their book selections from an extensive book
catalogue and receive enough copies of their selected book to allow everyone in the group
to read the same book at the same time. Each group meets on a regular basis to discuss the
book they've read.
The current website only has a PDF form that prospective members must fill out -- it does
not have an online registration form for new book club members. The organisation would like
to have their website redesigned. It should include a registration form which will allow new
members to fill up their details and submit the form. The organisation will then connect the
new members to local groups.
For this assignment, you will have to prototype only 1) the homepage and 2) the online
registration form. The design should be suitable for a standard full desktop i.e., from 960 to
1140p. You are designing for a high-fidelity prototype therefore doesn’t need to be fully
functional (i.e., the prototype does not connect to a database nor does it actually submit the
form field input). Error checking for format of addresses, passwords, mobile number, is out of
scope.
1 The current website of the organization is shown anonymously in Figure 1 and 2. Please preserve
anonymity.
You can choose to build the redesign from scratch, i.e., from the ground up, or you can adapt
template(s) from the w3.css framework (see
https://www.w3schools.com/w3css/w3css_downloads.asp) and you must
a) reference the template in the HTML source code and in the report, and
b) you must adapt the template with a substantial amount of your own customization.
This assignment is meant to assess your design decisions. As such, you must make enough
design decisions and be clear which design decisions are your own versus taken from the
template.
High-fidelity Prototype
Part 1
Redesign the homepage for the book club by giving it better web styling and structure. There
are no restrictions to what you can include in the homepage but there should be a navigation
bar, an H1 header, a supporting image and a primary call-to-action, i.e., for this case, a
button or link for registration. Make use of the visual design principles discussed in class and
take into account the basic accessibility guidelines. Your screen should approximately match
the visual complexity of Figure 1.
A colour in hex format has been assigned to you which you will have to use in some parts of
your design. You should receive this via individual email to your UPI@aucklanduni.ac.nz
email address. You can use the assigned colour either as a foreground or as a background.
It doesn’t have to be applied to all elements, but it must be emphasised and present in
multiple html elements in the homepage. When using the assigned colour as a foreground
you must choose the appropriate background that meets the colour contrast accessibility
guidelines. The same applies when using it as a background. You can check your assigned
colour to pick a contrasting colour as a foreground or background by using online tools for
example https://htmlcolors.com/hex-color.
In HTML, colours are defined using the attributes ‘color’ typically for foreground elements,
such as text or borders on a background; and ‘background-color’ which is a colour used to
fill a background. Imagine that you are working with a design team that requires
standardised naming of HTML elements.
To apply the assigned colour to elements where the attributes ‘color’ or ‘background-color’
are used, there are two steps. 1) You are required to define your css selectors in the exact
format below (with the example assigned colour #ffffff) and 2) you must reference the css
class selector in the element.
CSS class selector format in your css file:
.custom-color { (correct because correct css selector name)
color: #ffffff;
}
.custom-background-color { (correct because correct css selector name)
background-color: #ffffff;
}
.assigned-background-color { (incorrect because incorrect css selector name)
background-color: #ffffff;
}
Part 2
Design a registration form for a new book club member. The form should be in a modal
window that pops up as an overlay on top of the homepage. The modal window only
appears if you click the registration button or link from the homepage. The modal window
should also have a close button (usually a button labelled “x”) that closes itself and restores
the homepage. This can be achieved using a simple JavaScript code. The button or link that
you click to trigger the opening of the modal window must have an id of “trigger-modal”.
For example:
Register
For simplicity, your form should have exactly 3 sections with all of the 8 following fields (each
input field is only 1 input field):
· User Details
o Given name
o Surname
o Username
o Password
· Addresses
o Home Address (within exactly 1 input field)
o Work Address (within exactly 1 input field)
· Contacts
o Mobile Number (within exactly 1 input field)
o Email (within exactly 1 input field)
For the purposes of this assignment, do not add any additional sections or form fields to the
registration form which differ from the above specified sections and fields.
Imagine that your design team requires that the sections have the exact div ids:
· userDetails (For example:

)
· addresses
· contacts
Your design team also requires that you enclose the entire form with a div html element with
the id “bookclubrego”. For example
.
Submission instructions
You will need to submit in two places.
1) to Canvas all files including report, as a zip file
2) to assignment dropbox https://adb.auckland.ac.nz/ all files (except report) as
individual files (no folders, no zip)
Assignment dropbox requirements for submission
You must submit all files, except the report. Example included files are index.html, styles.css,
logo.jpg, script.js, all submitted as individual files. While folders are usual for web file
organisation, for the purposes of this assignment you must not submit any folders. All of
your files, such as your css and image files, should be in the same folder where your
index.html file is located. Do not put any files in folders or subfolders. Your directory
structure should be similar to the file structure below for example:
The examples below shows you how you call local files from your html:
(correct)
(correct)
(incorrect because it’s in a subfolder)
(correct)
(incorrect because it’s in a subfolder)
Technical Requirements Checklist
● The css selector names “custom-color” and ”custom-background-color” are used for
my assigned colour.
● The link or button for the modal uses the id “trigger-modal”.
● The form is enclosed with the div id “bookclubrego”.
● The form uses exactly three div id’s “userDetails”, “addresses” and “contacts” with
exactly 8 input fields, as specified.
● All files are in the same local folder and not in subfolders.
A2 Submission Marking Scheme
For evaluating the compliance of the submission, e.g., with accessibility guidelines, we will
use manual marking and we may use tools to check, e.g., colours. Please recall that only
W3 CSS is allowed.
Report
Quality, clarity of justifications for user experience, Gestalt principles, balance, emphasis,
unity, colour scheme for main page and form. (7 points)
Visual design
Overall quality of user experience, Gestalt principles, balance, emphasis, unity, colour
scheme for main page and form. Appropriate placeholder logo. (7 points)
Common Fate Form follows the Gestalt principle of Common Fate. (2 points)
Proximity Form follows the Gestalt principle of Proximity. (2 points)
Colour Assigned colour is emphasised and present in multiple screen elements. Colour
contrast meets accessibility guidelines. (5 points)
Functionality
Accessibility Submission follows accessibility guidelines presented in lecture. (6 points)
Functional correctness Form pops up as specified. No bugs. (1 point)
Q&A
Q: I understand that the assignment is testing prototyping and not the functionality, but would
some small functionalities be necessary? Specifically in cases like choosing a different item
combo box or applying filters to a list, would we be marked differently if we choose to
implement these small things as it helps to get a better overall feel of the prototype?
A: The purpose for the assignment is design rather than functionality. The assignment asks
students to implement 2 button clicks (i.e., the register button and the close button), and
leave the other buttons non functional.
Overall the answer to this question is No. For best marks, put effort into your design
decisions.
Q: What libraries, etc., can we use?
A: You have to use standard web browser technologies (HTML, CSS, Javascript).You are
not allowed to any libraries except JQuery and, if you wish, the w3.css framework (see
https://www.w3schools.com/w3css/w3css_downloads.asp ). You are not allowed to use
anything that generates code for you.
The reason for this approach is that downloading a template that sets the colour scheme, the
font scheme or has a creative layout isn't your own work. Intrinsically, this assignment does
not require elaborate toolkits, given the super-limited functional requirements of the system.
The assignment focuses on making good design choices rather than implementing
maximum functionality.
Q: Could I submit my github repo?
A: No -- you must follow every single submission instruction precisely as they’ve been laid
out. Each instruction is there for a reason. Please ask us in lecture if you are curious!
Q: How should I check the colour contrast of web elements?
 

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图