mirror of
https://github.com/kevinnlsamuel/rainbowcroissant.git
synced 2025-12-06 10:06:01 +05:30
11ty migrate (#6)
* purge sveltekit * install eleventy * move out stuff. move stuff around * add basic stuff * update picocss + knls patch for navlist margins * install some stuff for 11ty markdown attributes configure eleventy renderFile plugin * make base layout * more complete base layout * style base to full page body * PAGES * add npm build script
This commit is contained in:
95
svelte.src/routes/form/+page.svelte
Normal file
95
svelte.src/routes/form/+page.svelte
Normal file
@@ -0,0 +1,95 @@
|
||||
<p>Fill in your payment details</p>
|
||||
|
||||
<form class="grid grid-cols-[2fr_3fr] w-4/5 md:w-2/3 gap-2 md:gap-4 mx-auto">
|
||||
<label for="name">Name of the student</label>
|
||||
<input type="text" id="name" name="name" />
|
||||
|
||||
<label for="programme">Pick your programme</label>
|
||||
<select id="programme" name="programme">
|
||||
<option value="ug">UG Undergraduate</option>
|
||||
<option value="pg">PG Postgraduate</option>
|
||||
<option value="phd">PhD Doctorate</option>
|
||||
</select>
|
||||
|
||||
<label for="sem">Semester</label>
|
||||
<select id="sem">
|
||||
<option value="1">Sem I</option>
|
||||
<option value="2">Sem II</option>
|
||||
<option value="3">Sem III</option>
|
||||
<option value="4">Sem IV</option>
|
||||
<option value="5">Sem V</option>
|
||||
<option value="6">Sem VI</option>
|
||||
<option value="7">Sem VII</option>
|
||||
<option value="8">Sem VIII</option>
|
||||
<option value="9">Sem IX</option>
|
||||
<option value="10">Sem X</option>
|
||||
</select>
|
||||
|
||||
<label for="roll">Roll No</label>
|
||||
<input type="text" id="roll" name="roll" />
|
||||
|
||||
<label for="category">Category</label>
|
||||
<select id="category">
|
||||
<option value="gen">General</option>
|
||||
<option value="ews">EWS</option>
|
||||
<option value="obc">OBC</option>
|
||||
<option value="wdp">WDP</option>
|
||||
<option value="sc">SC</option>
|
||||
<option value="st">ST</option>
|
||||
<option value="vhc">VHC</option>
|
||||
<option value="phc">PHC</option>
|
||||
</select>
|
||||
|
||||
<label for="phone">Phone No</label>
|
||||
<input type="tel" id="phone" name="phone" />
|
||||
|
||||
<strong class="col-span-2">Details of the fees payment</strong>
|
||||
|
||||
<label for="acc-holder">Name of the account holder</label>
|
||||
<input type="text" id="acc-holder" name="acc-holder" />
|
||||
|
||||
<label for="acc-no">Account No</label>
|
||||
<input type="text" inputmode="numeric" id="acc-no" name="acc-no" />
|
||||
|
||||
<label for="bank">Name of the bank</label>
|
||||
<input type="text" id="bank" name="bank" />
|
||||
|
||||
<label for="branch">Branch</label>
|
||||
<input type="text" id="branch" name="branch" />
|
||||
|
||||
<label for="ifsc">IFSC code</label>
|
||||
<input type="text" id="ifsc" name="ifsc" />
|
||||
|
||||
<label for="paid-amt">Amount paid</label>
|
||||
<input type="text" inputmode="numeric" id="paid-amt" name="paid-amt" />
|
||||
|
||||
<label for="pay-date">Date of Payment</label>
|
||||
<input type="date" id="pay-date" name="bank" />
|
||||
|
||||
<label for="mode">Payment Mode</label>
|
||||
<select id="mode" name="mode">
|
||||
<option value="neft">NEFT</option>
|
||||
<option value="sbi">SBI to SBI</option>
|
||||
<option value="deb">Debit card</option>
|
||||
<option value="cre">Credit card</option>
|
||||
</select>
|
||||
|
||||
<label for="transaction-no">Transaction Number</label>
|
||||
<input type="text" id="transaction-no" name="transaction-no" />
|
||||
|
||||
<label for="reference-no">Reference Number</label>
|
||||
<input type="text" id="reference-no" name="reference-no" />
|
||||
|
||||
<label for="utr">UTR Number</label>
|
||||
<input type="text" id="utr" name="utr" />
|
||||
|
||||
<label for="inb">INB Reference Number (for transfer from SBI to SBI)</label>
|
||||
<input type="text" id="inb" name="inb" />
|
||||
|
||||
<strong class="col-span-2">Details of the fees payment</strong>
|
||||
|
||||
<ol>
|
||||
<li>A scanned copy of the receipt/counterfoil</li>
|
||||
<li>Screenshot of the message regarding payment of fees</li>
|
||||
</ol>
|
||||
</form>
|
||||
Reference in New Issue
Block a user