-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathBill.aspx
More file actions
64 lines (57 loc) · 2.43 KB
/
Bill.aspx
File metadata and controls
64 lines (57 loc) · 2.43 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
<%@ Page Title="Generate Bill" Language="C#" MasterPageFile="~/Doctor/doctormaster.Master"
AutoEventWireup="true" CodeBehind="Bill.aspx.cs" Inherits="doctor.bill" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<title>Generate Bill</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" />
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="Cp3" runat="server">
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-lg-6 col-md-8 col-sm-10">
<div class="card shadow-lg border-0 rounded-4">
<div class="card-body p-5 text-center">
<h2 class="fw-bold mb-4 text-primary">Appointment Bill</h2>
<p class="fs-5 text-muted mb-4">
Your total bill for this appointment is:
</p>
<h3 class="fw-bold text-dark mb-5">
₹ <asp:Label ID="Label1" runat="server" CssClass="text-success fw-bold"></asp:Label>
</h3>
<div class="d-flex justify-content-center gap-4">
<asp:Button
ID="Bill"
runat="server"
Text="Mark as Paid"
CssClass="btn btn-success btn-lg px-4 shadow-sm"
OnClick="bill_paid" />
<asp:Button
ID="Button1"
runat="server"
Text="Mark as Unpaid"
CssClass="btn btn-outline-danger btn-lg px-4 shadow-sm"
OnClick="bill_Unpaid" />
</div>
</div>
</div>
</div>
</div>
</div>
<style>
body {
background-color: #f8f9fa;
}
.card {
animation: fadeInUp 0.6s ease-in-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</asp:Content>