-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.aspx
More file actions
78 lines (73 loc) · 3.11 KB
/
Copy pathaccount.aspx
File metadata and controls
78 lines (73 loc) · 3.11 KB
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
78
<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="account.aspx.cs" Inherits="hackathon_starter_asp_webforms.account" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style>
body {
background: whitesmoke;
}
.body {
background: white;
width: 70%;
padding: 25px;
}
.inline {
display: inline-block;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="container">
<div class="alert alert-danger" runat="server" visible="false" id="divUserError">
Error! User not found
<a href="#" class="close" data-dismiss="alert" aria-label="close">× </a>
</div>
<div class="alert alert-danger" runat="server" visible="false" id="divPageError">
HTTP Error 404.0 - Page Not Found
<a href="#" class="close" data-dismiss="alert" aria-label="close">× </a>
</div>
<div runat="server" id="Profilebody" class="body center-block">
<h3>Profile</h3>
<hr />
<div class="row">
<div class="col-sm-5 profileImage">
<asp:Image ID="Image1" CssClass="" Height="130px" Width="120px" ImageUrl="~/images/favicon.png" runat="server" />
</div>
<div class="col-sm-7">
<div class="row">
<div class="inline">
<label>Username : </label>
</div>
<div class="inline">
<asp:Label ID="lblUsername" Text="text" runat="server" />
</div>
</div>
<div class="row">
<div class="inline">
<label>Fullname : </label>
</div>
<div class="inline">
<asp:Label ID="lblFullname" Text="text" runat="server" />
</div>
</div>
<div class="row">
<div class="inline">
<label>Gender : </label>
</div>
<div class="inline">
<asp:Label ID="lblGender" Text="text" runat="server" />
</div>
</div>
<div class="row">
<div class="inline">
<label>Location : </label>
</div>
<div class="inline">
<asp:Label ID="lblLocation" Text="text" runat="server" />
</div>
</div>
</div>
</div>
<br />
<asp:Button Text="Update Profile" ID="btnUpdateProfile" CssClass="btn btn-danger" runat="server" OnClick="btnUpdateProfile_Click" />
</div>
</div>
</asp:Content>