Advertisement
Guest User

Untitled

a guest
Mar 29th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 1.70 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="login.aspx.cs" Inherits="loginfunctietest.login" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7.     <title></title>
  8. </head>
  9. <body>
  10.     <form id="form1" runat="server">
  11.         <div>
  12.            <table>
  13.                <!-- user -->
  14.                <tr>
  15.                    <td>
  16.                        <asp:Label ID="Label1" runat="server" Text="Naam"></asp:Label>
  17.                    </td>
  18.                    <td>
  19.                        <asp:TextBox ID="txtNaam" runat="server"></asp:TextBox>
  20.                    </td>
  21.                </tr>
  22.                <!-- password -->
  23.                <tr>
  24.                    <td>
  25.                        <asp:Label ID="Label2" runat="server" Text="Wachtwoord"></asp:Label>
  26.                    </td>
  27.                    <td>
  28.                        <asp:TextBox ID="txtWachtwoord" TextMode="password" runat="server"></asp:TextBox>
  29.                    </td>
  30.                </tr>
  31.                <!-- login button -->
  32.                <tr>
  33.                    <td>
  34.                        
  35.                    </td>
  36.                    <td>
  37.                        <asp:Button ID="btnLogin" runat="server" Text="Login" OnClick="btnLogin_Click" />
  38.                    </td>
  39.                </tr>
  40.                <!-- user/pass incorrect -->
  41.                <tr>
  42.                    <td>
  43.  
  44.                    </td>
  45.                    <td>
  46.                        <asp:Label ID="lblErrorMsg" runat="server" Text="Foute Naam/Wachtwoord ingevoerd" ForeColor="Red"></asp:Label>
  47.                    </td>
  48.                </tr>
  49.            </table>
  50.         </div>
  51.     </form>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement