Fixes in sendmail and admin.css
This commit is contained in:
parent
ec777cd98f
commit
7d6bd0630e
3 changed files with 5 additions and 5 deletions
|
|
@ -79,9 +79,9 @@ class SendMail:
|
|||
|
||||
return False
|
||||
|
||||
except smtplib.SMTPAuthenticationError:
|
||||
except smtplib.SMTPAuthenticationError as eauth:
|
||||
|
||||
self.txt_error='Error: cannot login. Wrong username or password'
|
||||
self.txt_error='Error: cannot login. Wrong username or password '+eauth.__str__()
|
||||
|
||||
return False
|
||||
|
||||
|
|
|
|||
|
|
@ -589,7 +589,7 @@ a:hover.no_choose_flag
|
|||
|
||||
}
|
||||
|
||||
#center_body input[type="submit"], #center_body input[type="button"]
|
||||
#center_body input[type="submit"], #center_body input[type="button"], #center_body input[type="button"].button_blue
|
||||
{
|
||||
|
||||
font-family: helvetica, arial,sans;
|
||||
|
|
@ -611,7 +611,7 @@ a:hover.no_choose_flag
|
|||
|
||||
}
|
||||
|
||||
#center_body input:hover[type="submit"]
|
||||
#center_body input:hover[type="submit"], #center_body input[type="button"].button_blue
|
||||
{
|
||||
|
||||
background: #104070;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue