Tell us what’s happening:
I’m going mad with this i’ve created the form element and then the div inside the form and given the dive a className of section
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 [heroName, setHeroName] = useState('');
const { useState } = React;
export const SuperheroForm = () => {
const [heroName, setHeroName] = useState('');
const [realName, setRealName] = useState('');
const [powerSource, setPowerSource] = useState('');
const [powers, setPowers] = useState([]);
{/* User Editable Region */}
return (
<div className='form-wrap'>
{/* User Editable Region */}
<h2>Superhero Application Form</h2>
<p>Please complete all fields</p>
<form>
<div className="section">
</div>
</form>
</div>
)
};
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36
Challenge Information:
Build a Superhero Application Form - Step 4
