Merge pull request #1830 from thecashewtrader/register-no-email-note

Add a note if user attempts to register with (apparently) an email
This commit is contained in:
Bnyro
2023-01-10 01:00:54 +01:00
committed by GitHub
3 changed files with 14 additions and 1 deletions

View File

@@ -33,6 +33,8 @@
</template>
<script>
import { isEmail } from "../utils/Misc.js";
export default {
data() {
return {
@@ -52,6 +54,8 @@ export default {
methods: {
register() {
if (!this.username || !this.password) return;
if (isEmail(this.username) && !confirm(this.$t("info.register_no_email_note"))) return;
this.fetchJson(this.authApiUrl() + "/register", null, {
method: "POST",
body: JSON.stringify({