Show More
@@ -1,90 +1,90 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <%inherit file="base/root.mako"/> |
|
3 | 3 | |
|
4 | 4 | <%def name="title()"> |
|
5 | 5 | ${_('Sign In')} |
|
6 | 6 | %if c.rhodecode_name: |
|
7 | 7 | · ${h.branding(c.rhodecode_name)} |
|
8 | 8 | %endif |
|
9 | 9 | </%def> |
|
10 | 10 | |
|
11 | 11 | <style>body{background-color:#eeeeee;}</style> |
|
12 | 12 | <div class="loginbox"> |
|
13 | 13 | <div class="header"> |
|
14 | 14 | <div id="header-inner" class="title"> |
|
15 | 15 | <div id="logo"> |
|
16 | 16 | <div class="logo-wrapper"> |
|
17 | 17 | <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-216x60.png')}" alt="RhodeCode"/></a> |
|
18 | 18 | </div> |
|
19 | 19 | %if c.rhodecode_name: |
|
20 | <div class="branding"> ${h.branding(c.rhodecode_name)}</div> | |
|
20 | <div class="branding">- ${h.branding(c.rhodecode_name)}</div> | |
|
21 | 21 | %endif |
|
22 | 22 | </div> |
|
23 | 23 | </div> |
|
24 | 24 | </div> |
|
25 | 25 | |
|
26 | 26 | <div class="loginwrapper"> |
|
27 | 27 | <rhodecode-toast id="notifications"></rhodecode-toast> |
|
28 | 28 | <div class="left-column"> |
|
29 | 29 | <img class="sign-in-image" src="${h.asset('images/sign-in.png')}" alt="RhodeCode"/> |
|
30 | 30 | </div> |
|
31 | 31 | <%block name="above_login_button" /> |
|
32 | 32 | <div id="login" class="right-column"> |
|
33 | 33 | <!-- login --> |
|
34 | 34 | <div class="sign-in-title"> |
|
35 | 35 | <h1>${_('Sign In')}</h1> |
|
36 | 36 | %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')(): |
|
37 | 37 | <h4>${h.link_to(_("Go to the registration page to create a new account."), request.route_path('register'))}</h4> |
|
38 | 38 | %endif |
|
39 | 39 | </div> |
|
40 | 40 | <div class="inner form"> |
|
41 | 41 | ${h.form(request.route_path('login', _query={'came_from': c.came_from}), needs_csrf_token=False)} |
|
42 | 42 | |
|
43 | 43 | <label for="username">${_('Username')}:</label> |
|
44 | 44 | ${h.text('username', class_='focus', value=defaults.get('username'))} |
|
45 | 45 | %if 'username' in errors: |
|
46 | 46 | <span class="error-message">${errors.get('username')}</span> |
|
47 | 47 | <br /> |
|
48 | 48 | %endif |
|
49 | 49 | |
|
50 | 50 | <label for="password">${_('Password')}:</label> |
|
51 | 51 | ${h.password('password', class_='focus')} |
|
52 | 52 | %if 'password' in errors: |
|
53 | 53 | <span class="error-message">${errors.get('password')}</span> |
|
54 | 54 | <br /> |
|
55 | 55 | %endif |
|
56 | 56 | |
|
57 | 57 | ${h.checkbox('remember', value=True, checked=defaults.get('remember'))} |
|
58 | 58 | <label class="checkbox" for="remember">${_('Remember me')}</label> |
|
59 | 59 | |
|
60 | 60 | %if h.HasPermissionAny('hg.password_reset.enabled')(): |
|
61 | 61 | <p class="links"> |
|
62 | 62 | ${h.link_to(_('Forgot your password?'), h.route_path('reset_password'), class_='pwd_reset')} |
|
63 | 63 | </p> |
|
64 | 64 | %elif h.HasPermissionAny('hg.password_reset.hidden')(): |
|
65 | 65 | <p class="help-block"> |
|
66 | 66 | ${_('Password reset is disabled. Please contact ')} |
|
67 | 67 | % if c.visual.rhodecode_support_url: |
|
68 | 68 | <a href="${c.visual.rhodecode_support_url}" target="_blank">${_('Support')}</a> |
|
69 | 69 | ${_('or')} |
|
70 | 70 | % endif |
|
71 | 71 | ${_('an administrator if you need help.')} |
|
72 | 72 | </p> |
|
73 | 73 | %endif |
|
74 | 74 | |
|
75 | 75 | ${h.submit('sign_in', _('Sign In'), class_="btn sign-in")} |
|
76 | 76 | <p class="help-block pull-right"> |
|
77 | 77 | RhodeCode ${c.rhodecode_edition} |
|
78 | 78 | </p> |
|
79 | 79 | ${h.end_form()} |
|
80 | 80 | <script type="text/javascript"> |
|
81 | 81 | $(document).ready(function(){ |
|
82 | 82 | $('#username').focus(); |
|
83 | 83 | }) |
|
84 | 84 | </script> |
|
85 | 85 | </div> |
|
86 | 86 | <!-- end login --> |
|
87 | 87 | <%block name="below_login_button" /> |
|
88 | 88 | </div> |
|
89 | 89 | </div> |
|
90 | 90 | </div> |
@@ -1,101 +1,101 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <%inherit file="base/root.mako"/> |
|
3 | 3 | |
|
4 | 4 | <%def name="title()"> |
|
5 | 5 | ${_('Reset Password')} |
|
6 | 6 | %if c.rhodecode_name: |
|
7 | 7 | · ${h.branding(c.rhodecode_name)} |
|
8 | 8 | %endif |
|
9 | 9 | </%def> |
|
10 | 10 | <style>body{background-color:#eeeeee;}</style> |
|
11 | 11 | |
|
12 | 12 | <div class="loginbox"> |
|
13 | 13 | <div class="header"> |
|
14 | 14 | <div id="header-inner" class="title"> |
|
15 | 15 | <div id="logo"> |
|
16 | 16 | <div class="logo-wrapper"> |
|
17 | 17 | <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-216x60.png')}" alt="RhodeCode"/></a> |
|
18 | 18 | </div> |
|
19 | 19 | %if c.rhodecode_name: |
|
20 | <div class="branding"> ${h.branding(c.rhodecode_name)}</div> | |
|
20 | <div class="branding">- ${h.branding(c.rhodecode_name)}</div> | |
|
21 | 21 | %endif |
|
22 | 22 | </div> |
|
23 | 23 | </div> |
|
24 | 24 | </div> |
|
25 | 25 | |
|
26 | 26 | <div class="loginwrapper"> |
|
27 | 27 | <rhodecode-toast id="notifications"></rhodecode-toast> |
|
28 | 28 | <div class="left-column"> |
|
29 | 29 | <img class="sign-in-image" src="${h.asset('images/sign-in.png')}" alt="RhodeCode"/> |
|
30 | 30 | </div> |
|
31 | 31 | |
|
32 | 32 | %if h.HasPermissionAny('hg.password_reset.disabled')(): |
|
33 | 33 | <div class="right-column"> |
|
34 | 34 | <p> |
|
35 | 35 | ${_('Password reset is disabled. Please contact ')} |
|
36 | 36 | % if c.visual.rhodecode_support_url: |
|
37 | 37 | <a href="${c.visual.rhodecode_support_url}" target="_blank">${_('Support')}</a> |
|
38 | 38 | ${_('or')} |
|
39 | 39 | % endif |
|
40 | 40 | ${_('an administrator if you need help.')} |
|
41 | 41 | </p> |
|
42 | 42 | </div> |
|
43 | 43 | %else: |
|
44 | 44 | <div id="register" class="right-column"> |
|
45 | 45 | <!-- login --> |
|
46 | 46 | <div class="sign-in-title"> |
|
47 | 47 | <h1>${_('Reset your Password')}</h1> |
|
48 | 48 | <h4>${h.link_to(_("Go to the login page to sign in."), request.route_path('login'))}</h4> |
|
49 | 49 | </div> |
|
50 | 50 | <div class="inner form"> |
|
51 | 51 | ${h.form(request.route_path('reset_password'), needs_csrf_token=False)} |
|
52 | 52 | <label for="email">${_('Email Address')}:</label> |
|
53 | 53 | ${h.text('email', defaults.get('email'))} |
|
54 | 54 | %if 'email' in errors: |
|
55 | 55 | <span class="error-message">${errors.get('email')}</span> |
|
56 | 56 | <br /> |
|
57 | 57 | %endif |
|
58 | 58 | <p class="help-block">${_('Password reset link will be sent to matching email address')}</p> |
|
59 | 59 | |
|
60 | 60 | %if captcha_active: |
|
61 | 61 | <div class="login-captcha"> |
|
62 | 62 | <label for="email">${_('Captcha')}:</label> |
|
63 | 63 | ${h.hidden('recaptcha_field')} |
|
64 | 64 | <div id="recaptcha"></div> |
|
65 | 65 | |
|
66 | 66 | %if 'recaptcha_field' in errors: |
|
67 | 67 | <span class="error-message">${errors.get('recaptcha_field')}</span> |
|
68 | 68 | <br /> |
|
69 | 69 | %endif |
|
70 | 70 | </div> |
|
71 | 71 | %endif |
|
72 | 72 | |
|
73 | 73 | ${h.submit('send', _('Send password reset email'), class_="btn sign-in")} |
|
74 | 74 | <p class="help-block pull-right"> |
|
75 | 75 | RhodeCode ${c.rhodecode_edition} |
|
76 | 76 | </p> |
|
77 | 77 | |
|
78 | 78 | ${h.end_form()} |
|
79 | 79 | </div> |
|
80 | 80 | </div> |
|
81 | 81 | %endif |
|
82 | 82 | </div> |
|
83 | 83 | </div> |
|
84 | 84 | |
|
85 | 85 | <script type="text/javascript"> |
|
86 | 86 | $(document).ready(function(){ |
|
87 | 87 | $('#email').focus(); |
|
88 | 88 | }); |
|
89 | 89 | </script> |
|
90 | 90 | |
|
91 | 91 | % if captcha_active: |
|
92 | 92 | <script type="text/javascript"> |
|
93 | 93 | var onloadCallback = function() { |
|
94 | 94 | grecaptcha.render('recaptcha', { |
|
95 | 95 | 'sitekey' : "${captcha_public_key}" |
|
96 | 96 | }); |
|
97 | 97 | }; |
|
98 | 98 | </script> |
|
99 | 99 | <script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer></script> |
|
100 | 100 | % endif |
|
101 | 101 |
@@ -1,147 +1,147 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <%inherit file="base/root.mako"/> |
|
3 | 3 | |
|
4 | 4 | <%def name="title()"> |
|
5 | 5 | ${_('Create an Account')} |
|
6 | 6 | %if c.rhodecode_name: |
|
7 | 7 | · ${h.branding(c.rhodecode_name)} |
|
8 | 8 | %endif |
|
9 | 9 | </%def> |
|
10 | 10 | <style>body{background-color:#eeeeee;}</style> |
|
11 | 11 | |
|
12 | 12 | <div class="loginbox"> |
|
13 | 13 | <div class="header"> |
|
14 | 14 | <div id="header-inner" class="title"> |
|
15 | 15 | <div id="logo"> |
|
16 | 16 | <div class="logo-wrapper"> |
|
17 | 17 | <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-216x60.png')}" alt="RhodeCode"/></a> |
|
18 | 18 | </div> |
|
19 | 19 | %if c.rhodecode_name: |
|
20 | <div class="branding"> ${h.branding(c.rhodecode_name)}</div> | |
|
20 | <div class="branding">- ${h.branding(c.rhodecode_name)}</div> | |
|
21 | 21 | %endif |
|
22 | 22 | </div> |
|
23 | 23 | </div> |
|
24 | 24 | </div> |
|
25 | 25 | |
|
26 | 26 | <div class="loginwrapper"> |
|
27 | 27 | <rhodecode-toast id="notifications"></rhodecode-toast> |
|
28 | 28 | <div class="left-column"> |
|
29 | 29 | <img class="sign-in-image" src="${h.asset('images/sign-in.png')}" alt="RhodeCode"/> |
|
30 | 30 | </div> |
|
31 | 31 | <%block name="above_register_button" /> |
|
32 | 32 | <div id="register" class="right-column"> |
|
33 | 33 | <!-- login --> |
|
34 | 34 | <div class="sign-in-title"> |
|
35 | 35 | % if social_auth_provider: |
|
36 | 36 | <h1>${_('Create an account linked with {}').format(social_auth_provider)}</h1> |
|
37 | 37 | % else: |
|
38 | 38 | <h1>${_('Create an account')}</h1> |
|
39 | 39 | % endif |
|
40 | 40 | |
|
41 | 41 | <h4>${h.link_to(_("Go to the login page to sign in with an existing account."), request.route_path('login'))}</h4> |
|
42 | 42 | </div> |
|
43 | 43 | <div class="inner form"> |
|
44 | 44 | ${h.form(request.route_path('register'), needs_csrf_token=False)} |
|
45 | 45 | |
|
46 | 46 | <label for="username">${_('Username')}:</label> |
|
47 | 47 | ${h.text('username', defaults.get('username'))} |
|
48 | 48 | %if 'username' in errors: |
|
49 | 49 | <span class="error-message">${errors.get('username')}</span> |
|
50 | 50 | <br /> |
|
51 | 51 | %endif |
|
52 | 52 | |
|
53 | 53 | % if social_auth_provider: |
|
54 | 54 | ## hide password prompts for social auth |
|
55 | 55 | <div style="display: none"> |
|
56 | 56 | % endif |
|
57 | 57 | |
|
58 | 58 | <label for="password">${_('Password')}:</label> |
|
59 | 59 | ${h.password('password', defaults.get('password'))} |
|
60 | 60 | %if 'password' in errors: |
|
61 | 61 | <span class="error-message">${errors.get('password')}</span> |
|
62 | 62 | <br /> |
|
63 | 63 | %endif |
|
64 | 64 | |
|
65 | 65 | <label for="password_confirmation">${_('Re-enter password')}:</label> |
|
66 | 66 | ${h.password('password_confirmation', defaults.get('password_confirmation'))} |
|
67 | 67 | %if 'password_confirmation' in errors: |
|
68 | 68 | <span class="error-message">${errors.get('password_confirmation')}</span> |
|
69 | 69 | <br /> |
|
70 | 70 | %endif |
|
71 | 71 | |
|
72 | 72 | % if social_auth_provider: |
|
73 | 73 | ## hide password prompts for social auth |
|
74 | 74 | </div> |
|
75 | 75 | % endif |
|
76 | 76 | |
|
77 | 77 | <label for="firstname">${_('First Name')}:</label> |
|
78 | 78 | ${h.text('firstname', defaults.get('firstname'))} |
|
79 | 79 | %if 'firstname' in errors: |
|
80 | 80 | <span class="error-message">${errors.get('firstname')}</span> |
|
81 | 81 | <br /> |
|
82 | 82 | %endif |
|
83 | 83 | |
|
84 | 84 | <label for="lastname">${_('Last Name')}:</label> |
|
85 | 85 | ${h.text('lastname', defaults.get('lastname'))} |
|
86 | 86 | %if 'lastname' in errors: |
|
87 | 87 | <span class="error-message">${errors.get('lastname')}</span> |
|
88 | 88 | <br /> |
|
89 | 89 | %endif |
|
90 | 90 | |
|
91 | 91 | <label for="email">${_('Email')}:</label> |
|
92 | 92 | ${h.text('email', defaults.get('email'))} |
|
93 | 93 | %if 'email' in errors: |
|
94 | 94 | <span class="error-message">${errors.get('email')}</span> |
|
95 | 95 | <br /> |
|
96 | 96 | %endif |
|
97 | 97 | |
|
98 | 98 | %if captcha_active: |
|
99 | 99 | <div> |
|
100 | 100 | <label for="recaptcha">${_('Captcha')}:</label> |
|
101 | 101 | ${h.hidden('recaptcha_field')} |
|
102 | 102 | <div id="recaptcha"></div> |
|
103 | 103 | %if 'recaptcha_field' in errors: |
|
104 | 104 | <span class="error-message">${errors.get('recaptcha_field')}</span> |
|
105 | 105 | <br /> |
|
106 | 106 | %endif |
|
107 | 107 | </div> |
|
108 | 108 | %endif |
|
109 | 109 | |
|
110 | 110 | %if not auto_active: |
|
111 | 111 | <p class="activation_msg"> |
|
112 | 112 | ${_('Account activation requires admin approval.')} |
|
113 | 113 | </p> |
|
114 | 114 | %endif |
|
115 | 115 | <p class="register_message"> |
|
116 | 116 | ${register_message|n} |
|
117 | 117 | </p> |
|
118 | 118 | |
|
119 | 119 | ${h.submit('sign_up',_('Create Account'),class_="btn sign-in")} |
|
120 | 120 | <p class="help-block pull-right"> |
|
121 | 121 | RhodeCode ${c.rhodecode_edition} |
|
122 | 122 | </p> |
|
123 | 123 | ${h.end_form()} |
|
124 | 124 | </div> |
|
125 | 125 | <%block name="below_register_button" /> |
|
126 | 126 | </div> |
|
127 | 127 | </div> |
|
128 | 128 | </div> |
|
129 | 129 | |
|
130 | 130 | |
|
131 | 131 | <script type="text/javascript"> |
|
132 | 132 | $(document).ready(function(){ |
|
133 | 133 | $('#username').focus(); |
|
134 | 134 | }); |
|
135 | 135 | </script> |
|
136 | 136 | |
|
137 | 137 | % if captcha_active: |
|
138 | 138 | <script type="text/javascript"> |
|
139 | 139 | var onloadCallback = function() { |
|
140 | 140 | grecaptcha.render('recaptcha', { |
|
141 | 141 | 'sitekey' : "${captcha_public_key}" |
|
142 | 142 | }); |
|
143 | 143 | }; |
|
144 | 144 | </script> |
|
145 | 145 | <script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer></script> |
|
146 | 146 | % endif |
|
147 | 147 |
General Comments 0
You need to be logged in to leave comments.
Login now