Skip to content

Commit

Permalink
add submit button to form
Browse files Browse the repository at this point in the history
  • Loading branch information
Myekman committed Feb 17, 2023
1 parent 3d4a3ef commit 30f0a1d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
13 changes: 12 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ body {
/*style form-section here */

#form-section {
height: 800px;
height: 900px;
margin-top: 20px;
}

Expand Down Expand Up @@ -211,6 +211,17 @@ label {
margin: 5px 0 20px 10px;
}

.join-us-button {
margin-top: 20px;
border-radius: 5px;
padding: 20px 40px;
text-align: center;
font-size: 200%;
background-color: #f5b09f;
color: white;
display: block;
}

/* classes.html */

#read-about {
Expand Down
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2>Kids</h2>
</section>

<section id="form-section">
<form class="join-us-form" method="POST" action="?">
<form class="join-us-form" method="POST" action="https://formdump.codeinstitute.net/">
<h2><span>Sign up!</span>
<br>
for more info about Strong Gymnast Studios.</h2>
Expand All @@ -87,6 +87,7 @@ <h2><span>Sign up!</span>
<option value="Kids">Kids 6-9</option>
<option value="Kids">Kids 10-15</option>
</datalist>
<input type="submit" value="Join us!" class="join-us-button">
</form>
<div id="circle-image"></div>
</section>
Expand Down

0 comments on commit 30f0a1d

Please sign in to comment.