* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
id: bad87fee1348bd9aedc08830
 | 
						|
title: Use HTML5 to Require a Field
 | 
						|
challengeType: 0
 | 
						|
videoUrl: 'https://scrimba.com/p/pVMPUv/cMd4EcQ'
 | 
						|
---
 | 
						|
 | 
						|
## Description
 | 
						|
<section id='description'>
 | 
						|
You can require specific form fields so that your user will not be able to submit your form until he or she has filled them out.
 | 
						|
For example, if you wanted to make a text input field required, you can just add the attribute <code>required</code> within your <code>input</code> element, like this: <code><input type="text" required></code>
 | 
						|
</section>
 | 
						|
 | 
						|
## Instructions
 | 
						|
<section id='instructions'>
 | 
						|
Make your text <code>input</code> a <code>required</code> field, so that your user can't submit the form without completing this field.
 | 
						|
Then try to submit the form without inputting any text. See how your HTML5 form notifies you that the field is required?
 | 
						|
</section>
 | 
						|
 | 
						|
## Tests
 | 
						|
<section id='tests'>
 | 
						|
 | 
						|
```yml
 | 
						|
tests:
 | 
						|
  - text: Your text <code>input</code> element should have the <code>required</code> attribute.
 | 
						|
    testString: assert($("input").prop("required"), 'Your text <code>input</code> element should have the <code>required</code> attribute.');
 | 
						|
 | 
						|
```
 | 
						|
 | 
						|
</section>
 | 
						|
 | 
						|
## Challenge Seed
 | 
						|
<section id='challengeSeed'>
 | 
						|
 | 
						|
<div id='html-seed'>
 | 
						|
 | 
						|
```html
 | 
						|
<h2>CatPhotoApp</h2>
 | 
						|
<main>
 | 
						|
  <p>Click here to view more <a href="#">cat photos</a>.</p>
 | 
						|
 | 
						|
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
 | 
						|
 | 
						|
  <p>Things cats love:</p>
 | 
						|
  <ul>
 | 
						|
    <li>cat nip</li>
 | 
						|
    <li>laser pointers</li>
 | 
						|
    <li>lasagna</li>
 | 
						|
  </ul>
 | 
						|
  <p>Top 3 things cats hate:</p>
 | 
						|
  <ol>
 | 
						|
    <li>flea treatment</li>
 | 
						|
    <li>thunder</li>
 | 
						|
    <li>other cats</li>
 | 
						|
  </ol>
 | 
						|
  <form action="/submit-cat-photo">
 | 
						|
    <input type="text" placeholder="cat photo URL">
 | 
						|
    <button type="submit">Submit</button>
 | 
						|
  </form>
 | 
						|
</main>
 | 
						|
```
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
</section>
 | 
						|
 | 
						|
## Solution
 | 
						|
<section id='solution'>
 | 
						|
 | 
						|
```js
 | 
						|
// solution required
 | 
						|
```
 | 
						|
</section>
 |