<%@ Master Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
  <title>Login, LoginView and PasswordRecovery Samples</title>
  <style>
     body { font-family: verdana; font-size:.8em;}

     table.table {
       width:80%;
       font-size: 1em;
     }

     table.table td {
	     padding: 5px 5px 10px;
	     vertical-align: top;
	     background: #F1F1F1;
	     
     }
     
     table.table th{
	     padding-left: 5px;
	     background: #DADADA;
	     text-align: left;
     }
     
     .line {
       color:black;
     }
</style>
</head>
<body>
  <form id="form1" runat="server">
      <div><asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
      </asp:ContentPlaceHolder>
     
      <hr class="line"/>
      <h3>Example User Accounts</h3>
      
      You can use the following user accounts to try out this sample:
      <br /><br />
      <table class="table">
      
        <tr>
          <th>
            UserName</th>
          <th>
            Password</th>
          <th>
            Question</th>
          <th>
            Answer</th>
          <th>
            Roles</th>
        </tr>
        <tr>
          <td>
            User1</td>
          <td>
            123456?</td>
          <td>
            Favorite color?</td>
          <td>
            Red</td>
          <td>
            Users, Customers</td>
        </tr>
        <tr>
          <td>
            User2</td>
          <td>
            123456?</td>
          <td>
            Favorite color?</td>
          <td>
            Red</td>
          <td>
            Admins</td>
        </tr>
        <tr>
          <td>
            User3</td>
          <td>
            123456?</td>
          <td>
            Favorite color?</td>
          <td>
            Red</td>
          <td>
            Customers</td>
        </tr>
      </table>
      <br />
      &nbsp;</div>
  </form>
</body>
</html>
