Skip to content

Commit

Permalink
I guess we do need this
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed Jun 6, 2024
1 parent 3722746 commit 1b49e61
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion TASVideos/Pages/Account/Register.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ViewData.SetTitle("Create a new account");
}

<form method="post">
<form method="post" id="register-form">
<row>
<column md="6">
<fieldset>
Expand Down Expand Up @@ -67,4 +67,9 @@
@*For manual implementation of Google's ReCaptcha scripts, will require embedding site's public key.*@
<script src="https://www.google.com/recaptcha/api.js"></script>
<script src="/js/account-register.js"></script>
<script>
function onSubmit() {
document.getElementById("register-form").submit();
}
</script>
}

0 comments on commit 1b49e61

Please sign in to comment.