From 0febab248781177bcde8556223fd548512a6e26c Mon Sep 17 00:00:00 2001 From: root <root@ood.novalocal> Date: Wed, 2 Sep 2020 13:46:14 +0000 Subject: [PATCH] added email input and remove alert message on account creation --- app/templates/auth/SignUp.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html index e2f9e84..71611fc 100644 --- a/app/templates/auth/SignUp.html +++ b/app/templates/auth/SignUp.html @@ -22,7 +22,6 @@ socket.on( 'account ready', function( msg ) { $('#myModal').modal('hide'); - alert("Account has been created!"); window.location.replace('{{ referrer }}'); }); @@ -93,7 +92,8 @@ <label><b><label for="username">Blazer Id: </label><br></b></label> <input class="form-control" id="bid" name="bid" placeholder="Enter BlazerId" required="" type="text"> <label><b><label for="email">Email Id: </label><br></b></label> - <input class="form-control" id="email" name="email" placeholder="Enter Email Id" required="" type="text" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$" > + <input class="form-control" id="email" name="email" placeholder="Enter Email Id" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$" required="" type="text" > + <label><b><label for="fullname">Full Name: </label><br></b></label> <label><b><label for="fullname">Full Name: </label><br></b></label> <input class="form-control" id="fullname" name="fullname" placeholder="Enter Full Name" required="" type="text"> <label><b><label for="reason">Reason for Requesting Account: </label><br></b></label> -- GitLab