Bug Fixing
This commit is contained in:
parent
a04431032a
commit
47c96daf53
1 changed files with 44 additions and 45 deletions
|
@ -66,7 +66,8 @@
|
|||
{{end}}
|
||||
<div class="form-group">
|
||||
<label for="defaultdomain">Domain au sein des GV:</label>
|
||||
<input type="text" id="defaultdomain" name="defaultdomain" class="form-control" value="{{ .NewUserDefaultDomain }}" />
|
||||
<input type="text" id="defaultdomain" name="defaultdomain" class="form-control"
|
||||
value="{{ .NewUserDefaultDomain }}" />
|
||||
<small class="form-text text-muted">
|
||||
Le domaine du courriel des GV pour le nouveau utilisateur
|
||||
</small>
|
||||
|
@ -101,23 +102,21 @@
|
|||
Les deux mots de passe entrés ne correspondent pas.
|
||||
</div>
|
||||
{{end}}
|
||||
<button type="submit" class="btn btn-primary" onClick="ValidateEmail(document.getElementById('othermailbox'))">Créer le compte</button>
|
||||
<button type="submit" class="btn btn-primary" onClick="ValidateEmail(document.getElementById('othermailbox'))">Créer
|
||||
le compte</button>
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
<script lang="javascript">
|
||||
function ValidateEmail(inputControl)
|
||||
{
|
||||
function ValidateEmail(inputControl) {
|
||||
var mailformat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
|
||||
if(inputText.value.match(mailformat))
|
||||
{
|
||||
if (inputControl.value.match(mailformat)) {
|
||||
alert("Merci de renseigner un courriel de secours svp");
|
||||
inputControl.focus();
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
else {
|
||||
alert("Merci de renseigner un courriel de secours svp");
|
||||
inputControl.focus();
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue