-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin Control.aspx
43 lines (42 loc) · 1.91 KB
/
Admin Control.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
<%@ Page Title="Admin Control Management" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Admin Control.aspx.cs" Inherits="myblog.Admin_Control" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<form runat="server">
<section class="blog-post-area relative">
<div class="container-fluid">
<hr />
<h1 class="text-sm-center">Admin Control Management</h1>
<hr />
<div class="row">
<div class="single-amenities" style="margin: auto;">
<div class="amenities-thumb">
<a href="Admin Manage Post.aspx"><img
class="img-fluid"
src="img/Manage.png"
height="150" width="150"
alt="Manage Post" /></a>
<h5 class="text-sm-center">
<a>Manage Post</a>
</h5>
</div>
</div>
</div>
<br />
<div class="row">
<div class="single-amenities" style="margin: auto;">
<div class="amenities-thumb">
<img
class="img-fluid"
src="img/Feedbacks.png"
height="150" width="150"
alt="Manage Comment" />
<h5 class="text-sm-center">
<a>Manage Comment</a>
</h5>
</div>
</div>
</div>
<br />
</div>
</section>
</form>
</asp:Content>