Tell us what’s happening:
Step 15 still fails. I changed the code and even pasted the exact forum solution, but the test does not pass. The link under a similar question leads to a 404 page.
Your code so far
<!-- file: index.html -->
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Superhero Application Form</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/18.3.1/umd/react.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.3.1/umd/react-dom.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/7.26.3/babel.min.js"></script>
<script
data-plugins="transform-modules-umd"
type="text/babel"
src="index.jsx"
></script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="root"></div>
<script
data-plugins="transform-modules-umd"
type="text/babel"
data-presets="react"
data-type="module"
>
import { SuperheroForm } from './index.jsx';
ReactDOM.createRoot(document.getElementById('root')).render(<SuperheroForm />);
</script>
</body>
</html>
/* file: styles.css */
body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(30deg, #ff9999 50%, #6699ff 50%)
}
.form-wrap {
background-color: white;
width: 400px;
padding: 20px;
border: 1px solid black;
box-shadow: 5px 5px 10px black;
}
.form-wrap h2,
.form-wrap p {
text-align: center;
}
.form-wrap p {
position: relative;
top: -18px;
}
.section {
display: flex;
margin-bottom: 30px;
}
.column {
flex-direction: column;
}
.submit-wrap {
text-align: center;
}
.submit-btn {
display: block;
margin: 0 auto;
padding: 0.4rem 0.5rem;
border: 1px solid black
}
.submit-btn:hover {
cursor: pointer;
background-color: #f3f3f3;
}
.submit-btn:disabled {
cursor: not-allowed;
}
/* file: index.jsx */
const { useState } = React;
export const SuperheroForm = () => {
const powerSourceOptions = [
'Bitten by a strange creature',
'Radioactive exposure',
'Science experiment',
'Alien heritage',
'Ancient artifact discovery',
'Other'
];
const powersOptions = [
'Super Strength',
'Super Speed',
'Flight',
'Invisibility',
'Telekinesis',
'Other'
];
const [heroName, setHeroName] = useState('');
const [realName, setRealName] = useState('');
const [powerSource, setPowerSource] = useState('');
const [powers, setPowers] = useState([]);
return (
<div className='form-wrap'>
<h2>Superhero Application Form</h2>
<p>Please complete all fields</p>
<form>
<div className='section'>
<label>
Hero Name
<input
type='text'
value={heroName}
onChange={e => setHeroName(e.target.value)}
/>
</label>
<label>
Real Name
<input
type='password'
value={realName}
onChange={e => setRealName(e.target.value)}
/>
</label>
</div>
<label className='section column'>
How did you get your powers?
<select value={powerSource} onChange={e => setPowerSource(e.target.value)}>
<option value=''>
Select one
</option>
{powerSourceOptions.map(source => (
<option key={source} value={source}>
{source}
</option>
))}
</select>
</label>
<label className='section column'>
List your powers (select all that apply):
{/* User Editable Region */}
{powersOptions.map(power => (
<label key={power}>
<input type="checkbox" value={power}></input>
<span>{power}</span>
</label>
))}
{/* User Editable Region */}
</label>
</form>
</div>
)
};
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Build a Superhero Application Form - Step 15