Skip to content

Commit

Permalink
fix: submit button default value error
Browse files Browse the repository at this point in the history
  • Loading branch information
Chow Chun Leong authored and zeim839 committed Nov 2, 2023
1 parent 8deb5b7 commit e7a9159
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions public/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ textarea {
grid-column: 1 / 3;
}

.contact__content__form-sumbit {
.contact__content__form-submit {
width: 100px !important;
border: 0px;

Expand All @@ -369,7 +369,7 @@ textarea {
padding: 8px 12px;
}

.contact__content__form-sumbit:hover {
.contact__content__form-submit:hover {
background-color: 74F535;
box-shadow: inset 0 0 20px rgba(116, 245, 53, .5), 0 0 20px rgba(116, 245, 53, .2);
outline-color: rgba(116, 245, 53, 0);
Expand Down
2 changes: 1 addition & 1 deletion views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
<textarea required id="Message" name="Message" rows="8" cols="51"></textarea>
<div class="cf-turnstile" id="ts-captcha" data-sitekey="0x4AAAAAAAH-SzxPEdUlPxzY" data-theme="dark"></div>
<br />
<input type="submit" name="sumbit" class="contact__content__form-sumbit" style="background-color: #38F521;">
<input type="submit" name="submit" value="SUBMIT" class="contact__content__form-submit" style="background-color: #38F521;">
</div>
</form>
</div>
Expand Down

0 comments on commit e7a9159

Please sign in to comment.