Version 16.64.7

This commit is contained in:
Antonio Cañas Vargas 2016-11-19 02:04:39 +01:00
parent b9903ab2da
commit 9e85d8f520
3 changed files with 17 additions and 9 deletions

View File

@ -351,7 +351,8 @@ static void Acc_ShowFormRequestNewAccountWithParams (const char *NewNicknameWith
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"NewNick\""
" size=\"25\" maxlength=\"%u\""
" placeholder=\"%s\" value=\"%s\" />"
" placeholder=\"%s\" value=\"%s\""
" required=\"required\" />"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],
@ -368,7 +369,8 @@ static void Acc_ShowFormRequestNewAccountWithParams (const char *NewNicknameWith
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"NewEmail\""
" size=\"25\" maxlength=\"%u\""
" placeholder=\"%s\" value=\"%s\" />"
" placeholder=\"%s\" value=\"%s\""
" required=\"required\" />"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],

View File

@ -168,15 +168,17 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.64.6 (2016-11-17)"
#define Log_PLATFORM_VERSION "SWAD 16.64.7 (2016-11-18)"
#define CSS_FILE "swad16.60.1.css"
#define JS_FILE "swad16.46.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*?.h sql/swad*.sql | tail -1
/*
Version 16.64.6: Nov 17, 2016 Input fields required in log in. (207270 lines)
Version 16.64.5: Nov 17, 2016 Input fields required in record card. (207268 lines)
Version 16.64.7: Nov 18, 2016 Input fields required in new account form.
Input fields required in password forms. (207278 lines)
Version 16.64.6: Nov 17, 2016 Input fields required in log in form. (207270 lines)
Version 16.64.5: Nov 17, 2016 Input fields required in record card form. (207268 lines)
Version 16.64.4: Nov 17, 2016 Contextual help on guests and administrators. (207264 lines)
Version 16.64.3: Nov 17, 2016 Contextual help on teachers. (207259 lines)
Version 16.64.2: Nov 17, 2016 Code refactoring in record cards. (207253 lines)

View File

@ -696,7 +696,8 @@ void Pwd_ShowFormChgPwd (void)
"</td>"
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"password\" name=\"UsrPwd\""
" size=\"25\" maxlength=\"%u\" autocomplete=\"off\" />"
" size=\"25\" maxlength=\"%u\" autocomplete=\"off\""
" required=\"required\" />"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],
@ -741,7 +742,8 @@ void Pwd_PutFormToGetNewPasswordOnce (void)
"</td>"
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"password\" name=\"Paswd\""
" size=\"25\" maxlength=\"%u\" placeholder=\"%s\" />"
" size=\"25\" maxlength=\"%u\" placeholder=\"%s\""
" required=\"required\" />"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],
@ -768,7 +770,8 @@ void Pwd_PutFormToGetNewPasswordTwice (void)
"</td>"
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"password\" name=\"Paswd1\""
" size=\"25\" maxlength=\"%u\" placeholder=\"%s\" />"
" size=\"25\" maxlength=\"%u\" placeholder=\"%s\""
" required=\"required\" />"
"</td>"
"</tr>"
"<tr>"
@ -777,7 +780,8 @@ void Pwd_PutFormToGetNewPasswordTwice (void)
"</td>"
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"password\" name=\"Paswd2\""
" size=\"25\" maxlength=\"%u\" placeholder=\"%s\" />"
" size=\"25\" maxlength=\"%u\" placeholder=\"%s\""
" required=\"required\" />"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],