~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/security/logout.html

  • Committer: David Coles
  • Date: 2010-07-27 04:52:14 UTC
  • Revision ID: coles.david@gmail.com-20100727045214-p32h1kc0gcv48dpr
Worksheets: Strip off whitespace from the end of exercise attempts.

This solves an issue where accidental whitespace in an attempt will cause 
"IndentationError" syntax error (which don't occur when run in console).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:xi="http://www.w3.org/2001/XInclude"
3
 
      xmlns:py="http://genshi.edgewall.org/" py:strip="">
4
 
 
5
 
  <body py:strip="">
 
2
      xmlns:py="http://genshi.edgewall.org/">
 
3
  <head>
 
4
    <title>Log out</title>
 
5
  </head>
 
6
  <body>
 
7
    <h1>Confirm log out</h1>
6
8
    <div id="ivle_padding">
7
 
      <h3>Are you sure you want to logout?</h3>
8
 
      <p>
9
 
        <form action="${path}" method="POST">
10
 
          <input type="submit" value="Logout" />
11
 
        </form>
12
 
      </p>
 
9
      <p>Are you sure you want to log out?</p>
 
10
      <form action="${path}" method="post">
 
11
        <p>
 
12
          <input type="submit" value="Log out" />
 
13
        </p>
 
14
      </form>
13
15
    </div>
14
16
  </body>
15
17
</html>