-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasterPage.master
77 lines (74 loc) · 3.05 KB
/
MasterPage.master
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" AutoEventWireup="False" %>
<!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></title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
.style1
{
width: 120px;
height: 89px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
<table width="100%">
<tr>
<td>
<table>
<tr>
<td>
<img alt="Web" class="style1" src="/img/web-design.jpg" /></td>
<td valign="top">
<h2>
Служба поддержки и обслуживания веб сайтов</h2>
</td>
</tr>
</table>
<asp:ContentPlaceHolder ID="ContentPlaceHolder2" runat="server">
</asp:ContentPlaceHolder>
</td>
<td width="30%" valign="top">
<br/>
<table style="width:100%;">
<tr>
<td colspan="2">
<asp:Label ID="Label1" runat="server" Text="Авторизация"></asp:Label>
</td>
</tr>
<tr>
<td width="40%">
<asp:Label ID="Label2" runat="server" Text="Логин"></asp:Label>
</td>
<td width="70%">
<asp:TextBox ID="TextBox1" runat="server" Width="90%"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label3" runat="server" Text="Пароль"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Width="90%" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="Button2" runat="server" Text="Вход" Width="55px" />
<asp:Button ID="Button3" runat="server" Text="Выход" Width="59px" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</asp:ContentPlaceHolder>
</form>
</body>
</html>