mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing login screen for Reeder.
This commit is contained in:
parent
660cfe0372
commit
429ea7ee84
8 changed files with 13 additions and 14 deletions
|
@ -71,17 +71,17 @@ class SignupForm(forms.Form):
|
|||
username = forms.RegexField(regex=r'^\w+$',
|
||||
max_length=30,
|
||||
widget=forms.TextInput(attrs={'class': 'NB-input'}),
|
||||
label=_(u'username'),
|
||||
label=_(u'Username'),
|
||||
error_messages={
|
||||
'required': 'Please enter a username.',
|
||||
'invalid': "Your username may only contain letters and numbers."
|
||||
})
|
||||
email = forms.EmailField(widget=forms.TextInput(attrs={'maxlength': 75, 'class': 'NB-input'}),
|
||||
label=_(u'email'),
|
||||
label=_(u'Email'),
|
||||
required=True,
|
||||
error_messages={'required': 'Please enter an email.'})
|
||||
password = forms.CharField(widget=forms.PasswordInput(attrs={'class': 'NB-input'}),
|
||||
label=_(u'password'),
|
||||
label=_(u'Password'),
|
||||
required=False)
|
||||
# error_messages={'required': 'Please enter a password.'})
|
||||
|
||||
|
|
|
@ -10878,14 +10878,15 @@ form.opml_import_form input {
|
|||
width: 320px;
|
||||
}
|
||||
.NB-static-oauth .NB-static-form-label label {
|
||||
width: 120px;
|
||||
text-transform: uppercase;
|
||||
width: 108px;
|
||||
text-transform: none;
|
||||
font-size: 18px;
|
||||
padding: 8px 0 0 0;
|
||||
color: rgba(0, 0, 0, .6);
|
||||
display: block;
|
||||
}
|
||||
.NB-static-oauth .NB-static-form-input input {
|
||||
margin-left: 0;
|
||||
margin-left: 12px;
|
||||
margin-right: 0;
|
||||
height: 34px;
|
||||
font-size: 22px;
|
||||
|
@ -10943,12 +10944,6 @@ form.opml_import_form input {
|
|||
.NB-static-oauth .NB-static-form {
|
||||
width: auto;
|
||||
}
|
||||
.NB-static-oauth input[type=submit].NB-static-form-submit {
|
||||
float: none;
|
||||
margin: 36px auto 12px;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/* ======================== */
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-dns-prefetch-control" content="off"/>
|
||||
<meta name="robots" content="noindex"/>
|
||||
<meta name="viewport" content="width=320, initial-scale=0.5">
|
||||
|
||||
<style>
|
||||
html {
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-dns-prefetch-control" content="off"/>
|
||||
<meta name="robots" content="noindex"/>
|
||||
<meta name="viewport" content="width=320, initial-scale=0.5">
|
||||
|
||||
<style>
|
||||
html {
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-dns-prefetch-control" content="off"/>
|
||||
<meta name="robots" content="noindex"/>
|
||||
<meta name="viewport" content="width=320, initial-scale=0.5">
|
||||
|
||||
<style>
|
||||
html {
|
||||
|
|
|
@ -9,6 +9,7 @@ Content-Type: text/html
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-dns-prefetch-control" content="off"/>
|
||||
<meta name="robots" content="noindex"/>
|
||||
<meta name="viewport" content="width=320, initial-scale=0.5">
|
||||
|
||||
<style>
|
||||
html {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% include_stylesheets "common" %}
|
||||
|
||||
<meta name="viewport" content="width=500, initial-scale=0.75">
|
||||
<meta name="viewport" content="width=320, initial-scale=.85">
|
||||
{% endblock %}
|
||||
|
||||
{% block title %}Login{% endblock %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% include_stylesheets "common" %}
|
||||
|
||||
<meta name="viewport" content="width=500, initial-scale=1.0">
|
||||
<meta name="viewport" content="width=320, initial-scale=.85">
|
||||
{% endblock %}
|
||||
|
||||
{% block title %}Create an Account{% endblock %}
|
||||
|
|
Loading…
Add table
Reference in a new issue