mirror of
https://github.com/kevinnlsamuel/rainbowcroissant.git
synced 2025-12-06 10:06:01 +05:30
feeemailformat (#7)
* add now service fee mail format * list on services page
This commit is contained in:
@@ -4,13 +4,20 @@ title: services
|
|||||||
---
|
---
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<h1>COMING SOON…</h1>
|
<h1>Services</h1>
|
||||||
</header>
|
|
||||||
|
|
||||||
a collection of tools to make life a
|
<p>
|
||||||
little easier in this uni… maybe…
|
a collection of tools to make life a
|
||||||
|
little easier in this uni… maybe…
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
…someone has to make them and they are lazy
|
|
||||||
|
- [Fee Payment Email Format](/services/feemailformat)
|
||||||
|
|
||||||
|
<big class="container">MORE COMING SOON…</big>
|
||||||
|
<p>…someone has to make them and they are lazy</p>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|||||||
96
src/services/feemailformat.md
Normal file
96
src/services/feemailformat.md
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
---
|
||||||
|
layout: base
|
||||||
|
title: Fee Mail Format
|
||||||
|
desc: copiable format for mail to confirm fee payment details
|
||||||
|
---
|
||||||
|
|
||||||
|
<header class="center">
|
||||||
|
<h1>Fee Payment Email Format</h1>
|
||||||
|
<button id="copybtn" disabled="">COPY</button>
|
||||||
|
<p>that email thing format in a neat table that you can copy to gmail</p>
|
||||||
|
<p>psst. might not work everywhere. but <b>LONG PRESS</b> and paste. do not pick from keyboard</p>
|
||||||
|
<div>
|
||||||
|
<script type="module">
|
||||||
|
const btn = document.getElementById('copybtn');
|
||||||
|
btn.addEventListener("click", ()=> {
|
||||||
|
window.getSelection().selectAllChildren(document.querySelector('article'));
|
||||||
|
document.execCommand('copy');
|
||||||
|
btn.innerText = 'COPIED!';
|
||||||
|
btn.disabled = true;
|
||||||
|
setTimeout(()=>{btn.disabled = false; btn.innerText = 'COPY'},3000)
|
||||||
|
});
|
||||||
|
btn.disabled = false;
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<article>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr><th>Student Details</th></tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Semester</td><td>II</td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Name of the Student</td><td></td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Course/Programme</td><td></td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Roll Number</td><td></td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Category</td><td>General / EWS / OBC / WDP / SC / ST / VHC / PHC</td>
|
||||||
|
</tr><tr>
|
||||||
|
</tr>
|
||||||
|
<tr><td>Phone Number</td><td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr><th>Payment Details</th></tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Name of Account Holder</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Account Number</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Name of the Bank</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Branch</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>IFSC Code</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Amount Paid</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Date of Payment</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Payment Mode</td><td>SBI to SBI / NEFT / IMPS / UPI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Transaction Number</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Reference Number</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>UTR Number</td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>INB Reference Number <small>(SBI to SBI)</small></td><td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Challan Number</td><td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</article>
|
||||||
Reference in New Issue
Block a user