-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create generator-generic-ossf-slsa3-publish.yml
- Loading branch information
1 parent
d849856
commit 247970d
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
108 changes: 108 additions & 0 deletions
108
.github/workflows/generator-generic-ossf-slsa3-publish.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>UPI Payment</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
background-color: #f2f2f2; | ||
} | ||
|
||
.container { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
} | ||
|
||
h1 { | ||
color: #0073e6; | ||
} | ||
|
||
.header { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.logo { | ||
max-width: 200px; | ||
} | ||
|
||
.step { | ||
border: 1px solid #0073e6; | ||
border-radius: 5px; | ||
text-align: center; | ||
color: #0073e6; | ||
padding: 20px; | ||
margin: 20px 0; /* Add margin to separate the steps vertically */ | ||
} | ||
|
||
.step-number { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
|
||
.copy-button { | ||
background-color: #0073e6; | ||
color: #fff; | ||
border: none; | ||
padding: 10px 20px; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
|
||
.transaction-form { | ||
margin-top: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="header"> | ||
<img src="upi-logo.png" alt="UPI Logo" class="logo"> | ||
<h1>Make a UPI Payment</h1> | ||
</div> | ||
|
||
<div class="step"> | ||
<span class="step-number">Step 1:</span> Copy Amount and Bank Account Information | ||
<p class="upi-info">Name: Your Name</p> | ||
<p class="upi-info">Amount: ₹Amount</p> | ||
<p class="upi-info">UPI ID: yourupiaddress@bank</p> | ||
<button class="copy-button" onclick="copyUPIID()">Copy UPI ID</button> | ||
</div> | ||
|
||
<div class="step"> | ||
<span class="step-number">Step 2:</span> Transfer and don't modify this amount to us. | ||
<p>Please record your reference No. <span id="refNo">Ref No.</span> after payment</p> | ||
</div> | ||
|
||
<div class="step"> | ||
<span class="step-number">Step 3:</span> Please Enter Ref No. to complete the recharge | ||
<div class="transaction-form"> | ||
<form action="process_payment.php" method="post"> | ||
<label for="transactionID">Transaction ID:</label> | ||
<input type="text" id="transactionID" name="transactionID" required> | ||
<br> | ||
<input type="submit" value="Submit Transaction ID"> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
function copyUPIID() { | ||
var upiID = 'yourupiaddress@bank'; | ||
var tempInput = document.createElement("input"); | ||
tempInput.value = upiID; | ||
document.body.appendChild(tempInput); | ||
tempInput.select(); | ||
document.execCommand("copy"); | ||
document.body.removeChild(tempInput); | ||
alert("UPI ID copied to clipboard: " + upiID); | ||
} | ||
</script> | ||
</body> | ||
</html> |