Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 58 additions & 37 deletions Code/DBProject/Doctor/Bill.aspx
Original file line number Diff line number Diff line change
@@ -1,43 +1,64 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Doctor/doctormaster.Master" AutoEventWireup="true" CodeBehind="Bill.aspx.cs" Inherits="doctor.bill" %>
<%@ 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>

<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">



<h1>Your Bill For this Appointment is : <asp:Label ID="Label1" runat="server" Text="Label" Font-Bold="true" Font-Size="Medium" ></asp:Label> </h1>

<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />


&nbsp&nbsp&nbsp&nbsp<asp:Button ID="Bill" runat="server" Text="Bill Paid" OnClick="bill_paid" Font-Bold ="true" />


&nbsp&nbsp&nbsp&nbsp<asp:Button ID="Button1" runat="server" Text="Bill Unpaid" OnClick="bill_Unpaid" Font-Bold ="true" />





<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>