This commit is contained in:
Beppe
2019-07-04 01:05:11 +02:00
parent 60eb72bd30
commit df39b0392c
67 changed files with 2147 additions and 31 deletions

View File

@@ -0,0 +1,25 @@
<%@ Page Language="C#" Inherits="Gui.addUser" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title>addUser</title>
</head>
<body>
<form id="form1" runat="server">
<p>Naam</p>
<asp:TextBox id="txtName" runat="server"/>
<p>Achternaam</p>
<asp:TextBox id="txtLastName" runat="server"/>
<p>addr</p>
<asp:TextBox id="txtAddr" runat="server"/>
<p>gsm</p>
<asp:TextBox id="txtGsm" runat="server"/>
<p>balans</p>
<asp:TextBox id="txtBalance" runat="server"/>
<asp:Label id="alertlabel" runat="server" />
<asp:Button id="addusr" OnClick="test" runat="server" Text="Add User"/>
<p></p>
<asp:Button id="return" OnClick="ret" runat="server" Text="Return"/>
</form>
</body>
</html>