You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.8 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LoginSession.aspx.cs" Inherits="Swift.web.LoginSession" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head id="Head1" runat="server">
  5. <title>User session</title>
  6. <link href="css/style.css" rel="stylesheet" type="text/css" />
  7. <style>
  8. .messageBoard {
  9. background: url("images/error-icon.png") no-repeat scroll 3% 35% transparent;
  10. border: 1px solid #E00024;
  11. border-radius: 5px 5px 5px 5px;
  12. height: 105px;
  13. margin: 35px auto;
  14. padding: 10px 20px;
  15. width: 560px;
  16. }
  17. .messageBlock {
  18. clear: both;
  19. color: Red;
  20. margin: 15px 10px 15px 60px;
  21. font-size: 14px;
  22. }
  23. #mes {
  24. }
  25. .optionDiv {
  26. clear: both;
  27. margin: 25px auto;
  28. text-align: center;
  29. width: auto;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <form id="form1" runat="server">
  35. <div class="messageBoard">
  36. <div class="messageBlock">
  37. <div id="mes" runat="server" style="font-size: 18px;" align="center"></div>
  38. </div>
  39. <div class="optionDiv" style="width: auto; clear: both; margin: 0 auto;">
  40. <asp:Button ID="btnClearSession" runat="server" Text="Clear Session"
  41. CssClass="button" OnClick="btnClearSession_Click" />
  42. <asp:Button ID="btnContinue" runat="server" Text="Continue To Login"
  43. CssClass="button" Visible="false" OnClick="btnContinue_Click" />
  44. </div>
  45. </div>
  46. </form>
  47. </body>
  48. </html>