Commit 4ccc0070 by Muhammad Usman

pattern fixes

parent 59c4064d
Pipeline #337 passed with stage
in 0 seconds
......@@ -109,14 +109,15 @@ while (have_posts()):
</div>
<div class="col-sm-8 col-padding">
<input class="form-control text-feild" placeholder="Name"
maxlength="200" type="string" name="fname" required />
maxlength="200" type="string" name="fname" required pattern="[a-zA-Z]+[ ][a-zA-Z]+"/>
<small style="font-size: 12px;">format: FirstName LastName</small>
<input class="form-control text-feild" placeholder="Email"
maxlength="200" type="email" name="email" required />
<input class="form-control text-feild" placeholder="Confirm Email"
maxlength="200" type="email" name="confirmEmail" required />
<input class="form-control text-feild" placeholder="Phone number"
maxlength="200" type="string" name="phone" pattern="\+\d{2,3}\s\d*" required />
<small>format: +xx xxx xxxx xxx</small>
<small style="font-size: 12px;">format: +xx xxxxxxx</small>
<div class="lms-all-course-holder">
</div>
<a href="#" class="lms-courses-select-btn"><img class="add-icon" src="<?php echo plugin_dir_url(__FILE__);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment