~mardy/signon-ui/lp1271052

« back to all changes in this revision

Viewing changes to src/http-warning.html

  • Committer: Alberto Mardegan
  • Date: 2013-06-17 11:21:13 UTC
  • mto: This revision was merged to the branch mainline in revision 106.
  • Revision ID: alberto.mardegan@canonical.com-20130617112113-rsrl3sph1hcw0cdd
Show a worning message when authenticating with plain HTTP

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html>
3
 
  <head>
4
 
    <title>Security warning</title>
5
 
    <style type="text/css" >
6
 
      body {
7
 
        font-family: 'Ubuntu', sans-serif;
8
 
      }
9
 
      <script>
10
 
        function goBack()
11
 
        {
12
 
          window.history.back()
13
 
        }
14
 
      </script>
15
 
    </style>
16
 
  </head>
17
 
  <body>
18
 
    <p>Hello world!</p>
19
 
     <a href="javascript:history.back();">Back</a>
20
 
    <FORM><INPUT Type="button" VALUE="Back" onClick="history.go(-1);return true;"></FORM>
21
 
     <input type="button" value="Back" onclick="goBack()">
22
 
  </body>
23
 
</html>