This commit is contained in:
SilicoFlare
2023-03-28 14:25:37 +05:30
committed by GitHub
parent 184d997786
commit a513c97c18

View File

@@ -24,19 +24,19 @@
<form>
<p>
<label for="stuName">Name: </label>
<input type="text" id="stuName" placeholder="Enter your name">
<input type="text" id="stuName" placeholder="Enter your name" onchange="genCode()">
</p>
<p>
<label for="srn">SRN: </label>
<input type="text" id="srn" placeholder="Enter your SRN">
<input type="text" id="srn" placeholder="Enter your SRN" onchange="genCode()">
</p><br><br>
<template id="vals">
<div class="value">
<label class="lbl1" for="x">X: </label>
<input type="text" class="fld1" id="x">&emsp;
<input type="text" class="fld1" id="x" onchange="genCode()">&emsp;
<label class="lbl2" for="y">Y: </label>
<input type="text" class="fld2" id="y">&emsp;
<input type="text" class="fld2" id="y" onchange="genCode()">&emsp;
<button type="button" class="del">×</button>
</div>
</template>