Fixed issue #107.

This commit is contained in:
Rooty 2024-02-26 13:57:36 +01:00
parent f2eb39de21
commit a7490cc9da
3 changed files with 11 additions and 11 deletions

View File

@ -87,20 +87,20 @@ form.container-fluid div.row textarea:focus{
form div.row input,
form div.row select,
form div.row textarea{
font-size: .75rem;
font-family: inherit;
padding-left: 0.50rem;
background-color: #fff;
border: 1px solid #c8c8c8;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
font-size: .75rem;
font-family: inherit;
padding-left: 0.50rem;
background-color: #fff;
border: 1px solid #c8c8c8;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
form div.row select,
form div.row input[type=text],
form div.row input[type=password]{
min-width: 12rem;
max-width: 12rem;
max-width: 15rem;
}
form div.row input[type="checkbox"],

View File

@ -3,9 +3,9 @@
<div class="card text-center border-0">
<div class="card-header"><h3><mx:text id="allCom"/></h3></div>
<div class="card-body">
<div class="row p-1 w-25 mw-50 mx-auto">
<div class="row p-1 mx-auto d-inline">
<label class="hidden" for="com"></label>
<select name="param" onchange="javascript:FselectCom();" id="com">
<select name="param" class="w-auto" onchange="javascript:FselectCom();" id="com">
<option value=""><mx:text id="selectCom"/></option>
<mx:bloc id="bloc1">
<option mXattribut="value:entrynodeid" <mx:text id="entrynodeselected"/>><mx:text id="entrynode"/></option>

View File

@ -449,7 +449,7 @@ Class Community extends CoordinationObj
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_first_name", "text", "user_first_name", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipFirstName"), ENT_QUOTES)."\"", getMessage("user_first_name"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_last_name", "text", "user_last_name", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipLastName"), ENT_QUOTES)."\"", getMessage("user_last_name"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_login", "text", "user_login", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipLogin"), ENT_QUOTES)."\"", getMessage("user_login"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_mail", "email", "user_mail", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipCourriel"), ENT_QUOTES)."\"", getMessage("user_mail"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_mail", "text", "user_mail", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipCourriel"), ENT_QUOTES)."\"", getMessage("user_mail"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_password", "password", "user_password", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipPassword"), ENT_QUOTES)."\"", getMessage("user_password"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_password2", "password", "user_password2", "", "class=\"form\" required=\"true\" title=\"".htmlspecialchars(getMessage("tipPassword2"), ENT_QUOTES)."\"", getMessage("user_password"));
$GLOBALS["SYSTEM_TEMPLATE"]->MxFormField("user_birthdate", "text", "user_birthdate", "jj/mm/aaaa", "class=\"form\" required=\"true\" data-provide=\"datepicker\" data-date-format=\"dd/mm/yyyy\" data-date-language=\"fr\" title=\"".htmlspecialchars(getMessage("tipBirthDate"), ENT_QUOTES)."\"", getMessage("user_birthdate"));