Hello guys, I'm want to check if the user accept my terms and conditions, I tried ASP but I failed.
Can you help me?
Can you help me?
Code:
<form action="processform.asp" method="post">
<label class="radio">
<input type="radio" name="optionterm" id="termradio1" value="accept">
I read and I accept it.
</label>
<label class="radio">
<input type="radio" name="optionterm" id="termradio2" value="decline" checked>
I read and I <b>don't</b> accept.
</label>
<center><button type="submit" class="btn btn-primary">Submit</button></center>
</form>
Comment