You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
3.1 KiB
67 lines
3.1 KiB
6 years ago
|
# Hello
|
||
|
|
||
|
**Tier:** 1-Beginner
|
||
|
|
||
|
It is a given that applications must provide users with the functionality
|
||
|
necessary to accomplish some task or goal. The effectiveness of app functionality
|
||
|
is the first determinate of how users perceive the apps they use. However, it
|
||
|
is not the only thing that influences user satisfaction.
|
||
|
|
||
6 years ago
|
The User Interface and User Experience (UI/UX) features developers build into
|
||
6 years ago
|
apps have at least an equal amount of influence on users perception of an app.
|
||
6 years ago
|
It may be an oversimplification, but UI/UX is largely (but not wholly)
|
||
|
concerned with an apps "form". Personalization is an aspect of UX that tailors
|
||
6 years ago
|
characteristics and actions to
|
||
|
the individual user. Personalizing app functionality in this manner works to
|
||
|
make the app easier and more pleasing to use.
|
||
|
|
||
6 years ago
|
The objective of the Hello app is to leverage geolocation to obtain the users
|
||
|
country so it can then generate a customized greeting in the users native
|
||
6 years ago
|
language.
|
||
|
|
||
|
### Constraints
|
||
6 years ago
|
|
||
|
- Developers should use the [IP-API](http://ip-api.com/docs/api:json) service
|
||
|
to obtain the users country code.
|
||
|
- Developers should use the
|
||
|
[Fourtonfish](https://www.fourtonfish.com/hellosalut/hello/) service to
|
||
|
obtain the greeting in the users native language by passing the country code.
|
||
6 years ago
|
|
||
|
## User Stories
|
||
|
|
||
|
- [ ] User can see a mock login panel containing a user name text input field,
|
||
6 years ago
|
a password text input field, and 'Login' and 'Logout' buttons.
|
||
6 years ago
|
- [ ] User can enter a mock login name into the User Name field.
|
||
|
- [ ] User can enter a mock password into the Password field. Input should
|
||
6 years ago
|
be masked so the user see's asterisks (`*`) for each character that is entered
|
||
|
rather than the plaintext password.
|
||
6 years ago
|
- [ ] User can click the 'Login' button to perform a mock login.
|
||
|
- [ ] User can see a message if either or both of the input fields are empty
|
||
6 years ago
|
and the border color of the field(s) in error should be changed to red.
|
||
6 years ago
|
- [ ] User can see a login acknowledgement message in the format:
|
||
6 years ago
|
`<hello-in-native-language> <user-name> you have successfully logged in!`
|
||
6 years ago
|
- [ ] User can click the 'Logout' button to clear the text input fields and
|
||
6 years ago
|
any previous messages.
|
||
6 years ago
|
- [ ] User can see a new message when successfully logged out in the format:
|
||
6 years ago
|
`Have a great day <user-name>!`
|
||
6 years ago
|
|
||
|
## Bonus features
|
||
|
|
||
|
- [ ] User can see an additional text input field for a country code which
|
||
6 years ago
|
will be used to override the country code obtained through geolocation. Hint:
|
||
|
this is a great feature for testing your app.
|
||
6 years ago
|
- [ ] User can see additional geolocation information after logging on that
|
||
6 years ago
|
includes at least the local IP address, city, region, country name, zip code,
|
||
|
longitude, latitude, and timezone.
|
||
6 years ago
|
|
||
|
## Useful links and resources
|
||
|
|
||
6 years ago
|
- [Form Follows Function (Wikipedia)](https://en.wikipedia.org/wiki/Form_follows_function)
|
||
|
- [Personalization (Wikipedia)](https://en.wikipedia.org/wiki/Personalization)
|
||
|
- [Fourtonfish](https://www.fourtonfish.com/hellosalut/hello/)
|
||
|
- [IP-API](http://ip-api.com/docs/api:json)
|
||
6 years ago
|
|
||
|
## Example projects
|
||
|
|
||
|
[Fourtonfish Hello World](https://fourtonfish.com/hellosalut/helloworld/)
|