made it so that you cant refill past the allowed refill number

This commit is contained in:
EggMan20339
2024-04-02 09:14:08 -04:00
parent 39023fcdf8
commit 209a07a411
13 changed files with 119 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
<%@ Page Language="C#" CodeBehind="MaxRefillNotif.aspx.cs" Inherits="FWA_MAIN.MaxRefillNotif" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<link type="text/css" href="main.css"/>
<head runat="server">
<title>Title</title>
</head>
<body style="background-color: #0f0f0f">
<form id="HtmlForm" runat="server" style="background-color: #0f0f0f">
<div style="horiz-align: center; width: 100%">
<h1 style="color: red; horiz-align: center">MAX REFILLS REACHED</h1>
</div>
<br/>
<br/>
<br/>
<asp:Button runat="server" ID="btnClose" CssClass="btnPatSearch" Text="Close" OnClick="btnClose_OnClick"/>
</form>
</body>
</html>