Welcome!
25 |Create an account or Log-in
26 | 27 |├── README.md
├── images
├── GitHub_Logo.png
├── add-user1.png
├── bg-img-min.jpg
└── validated.png
├── index.html
├── script.js
└── styles.css
/README.md:
--------------------------------------------------------------------------------
1 | # Sign-up Form
2 |
3 | ## [Live Demo](https://hmjatt.github.io/Sign-up-Form/)
4 |
5 | 
6 |
7 |
8 | A responsive sign-up form. Feel free to give me reviews at my [Twitter](https://twitter.com/hmjatt/)
9 |
10 | ### Technologies Used
11 |
12 |
13 |
14 | ### Updates made to old project
15 |
16 | 1. Client-Side Form Validation with JavaScript
17 |
18 | 2. Custom error messages with validation
19 |
20 | 3. Password and Confirm Password validation with custom error message
21 |
22 | 4. REGEX validation for Name, Phone, Email, Password, Confirm Password
23 |
24 | 5. Min & Max Length validation for Name, Phone, Email, Password, Confirm Password
25 |
26 | 6. Name and Phone number support for international Names and Phone numbers
27 |
28 | 7. Client-Side Form Validation with JavaScript is not a substitute for Server-Side Validation
29 |
30 |
31 |
32 | ### Links to content that helped me with this project
33 |
34 | 1. MDN
35 | - [Client-side Form Validation](https://developer.mozilla.org/en-US/docs/Learn/Forms/Form_validation#validating_forms_using_javascript)
36 |
37 | 3. The Odin Project
38 | - [Article](https://www.theodinproject.com/lessons/node-path-javascript-form-validation-with-javascript)
39 |
40 | 4. W3Schools
41 | - [JavaScript Validation Api](https://www.w3schools.com/js/js_validation_api.asp)
42 | - [Custom Password Validation](https://www.w3schools.com/howto/howto_js_password_validation.asp)
43 |
44 | 5. Stack Overflow
45 | - [List of standard lengths for database fields](https://stackoverflow.com/questions/20958/list-of-standard-lengths-for-database-fields)
46 | - [Validating First and Last Name](https://stackoverflow.com/questions/2385701/regular-expression-for-first-and-last-name)
47 | - [Validating Phone Number(kuzey beytar)](https://stackoverflow.com/questions/4338267/validate-phone-number-with-javascript)
48 |
49 |
50 |
51 | #### Quote
52 |
53 | "A computer science teacher asks the class to turn to page 404.
54 | The students search feverishly, to no avail"
55 |
56 | >
57 | > :smile: :wavy_dash:
58 |
--------------------------------------------------------------------------------
/images/GitHub_Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmjatt/Sign-up-Form/b0afe304f846ebbe732121640ef30f11013abed9/images/GitHub_Logo.png
--------------------------------------------------------------------------------
/images/add-user1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmjatt/Sign-up-Form/b0afe304f846ebbe732121640ef30f11013abed9/images/add-user1.png
--------------------------------------------------------------------------------
/images/bg-img-min.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmjatt/Sign-up-Form/b0afe304f846ebbe732121640ef30f11013abed9/images/bg-img-min.jpg
--------------------------------------------------------------------------------
/images/validated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmjatt/Sign-up-Form/b0afe304f846ebbe732121640ef30f11013abed9/images/validated.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Create an account or Log-in
26 | 27 |