-
Notifications
You must be signed in to change notification settings - Fork 0
/
Success.aspx
36 lines (30 loc) · 1.31 KB
/
Success.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
<%@ Page Language="C#" Debug="true" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" MaintainScrollPositionOnPostback="true" CodeFile="Success.aspx.cs" Inherits="Success" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:Content ID="Content1" ContentPlaceHolderID="main" runat="Server">
<style>
#<%=btnBackToInbox.ClientID%>{
background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%) !important;
border-color: #fbc2eb;
}
</style>
<div class="container">
<div class="row justify-content-center">
<img src="./Image/success.gif" alt="Description of GIF" width="150" height="150" />
</div>
<div class="row justify-content-center">
<p class="lead"><b>Success!</b></p>
</div>
<div class="row justify-content-center">
<p id="pSuccessMessage" runat="server" class="lead"></p>
</div>
<hr />
<div class="row justify-content-center">
<asp:Button
class="btn btn-primary px-4"
ID="btnBackToInbox"
runat="server"
OnClick="btnBackToInbox_Click"
Text="Go to inbox" />
</div>
</div>
</asp:Content>