-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplay_profile.aspx
61 lines (47 loc) · 2.37 KB
/
display_profile.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="display_profile.aspx.cs" Inherits="display_profile" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<!-- Start Contact -->
<section id="mu-contact">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-contact-area">
<div class="mu-title-area">
<h2 class="mu-heading-title">Profile</h2>
</div>
<!-- Start Contact Content -->
<div class="mu-contact-content">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="mu-contact-form-area">
<div id="form-messages"></div>
<div class="form-group">
Name: <asp:Label ID="name" runat="server" Text="Name"></asp:Label>
</div>
<div class="form-group">
Username: <asp:Label ID="username" runat="server" Text="Username"></asp:Label>
</div>
<div class="form-group">
Email: <asp:Label ID="email" runat="server" Text="Email"></asp:Label>
</div>
<div class="form-group">
Bio: <asp:Label ID="bio" runat="server" Text="Bio"></asp:Label>
</div>
<div class="form-group">
Contact Number: <asp:Label ID="contact_number" runat="server" Text="Contact Number"></asp:Label>
</div>
</div>
</div>
</div>
</div>
<!-- End Contact Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End Contact -->
</asp:Content>