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}}
|
{{end}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="defaultdomain">Domain au sein des GV:</label>
|
<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">
|
<small class="form-text text-muted">
|
||||||
Le domaine du courriel des GV pour le nouveau utilisateur
|
Le domaine du courriel des GV pour le nouveau utilisateur
|
||||||
</small>
|
</small>
|
||||||
|
@ -101,23 +102,21 @@
|
||||||
Les deux mots de passe entrés ne correspondent pas.
|
Les deux mots de passe entrés ne correspondent pas.
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
{{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>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script lang="javascript">
|
<script lang="javascript">
|
||||||
function ValidateEmail(inputControl)
|
function ValidateEmail(inputControl) {
|
||||||
{
|
|
||||||
var mailformat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
|
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");
|
alert("Merci de renseigner un courriel de secours svp");
|
||||||
inputControl.focus();
|
inputControl.focus();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
alert("Merci de renseigner un courriel de secours svp");
|
alert("Merci de renseigner un courriel de secours svp");
|
||||||
inputControl.focus();
|
inputControl.focus();
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue