main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
939 bytes
|
Line | |
---|
1 | {{extend 'layout.html'}} |
---|
2 | {{block sectionclass}}login{{end}} |
---|
3 | <!-- begin "index" block --> |
---|
4 | <h2>web2py™ {{=T('Web Framework')}}</h2> |
---|
5 | <h3>{{=T('Login to the Administrative Interface')}}</h3> |
---|
6 | <div class="form row-fluid"> |
---|
7 | {{if request.is_https or request.is_local:}} |
---|
8 | <form action="{{=URL(r=request)}}" method="post" class="span4 well"> |
---|
9 | <label for="password">{{=T('Administrator Password:')}}</label> |
---|
10 | <input type="password" name="password" id="password"/> |
---|
11 | <input type="hidden" name="send" value="{{=send}}"/> |
---|
12 | <div class="controls"><button type="submit" name="login" class="btn">{{=T('Login')}}</button></div> |
---|
13 | </form> |
---|
14 | {{else:}} |
---|
15 | <p class="help span7 alert alert-block alert-warning">{{=T('ATTENTION: Login requires a secure (HTTPS) connection or running on localhost.')}}</p> |
---|
16 | {{pass}} |
---|
17 | </div> |
---|
18 | <script type="text/javascript"> |
---|
19 | jQuery(document).ready(function(){ |
---|
20 | jQuery("#password").focus(); |
---|
21 | }); |
---|
22 | </script> |
---|
23 | <!-- end "index" block --> |
---|
Note: See
TracBrowser
for help on using the repository browser.