Merge pull request #138 from rymaju/add_client_side_email_validation
Adding email validation to booking
This commit is contained in:
		
						commit
						a445b262ce
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -66,13 +66,13 @@ export default function Book(props) { | |||
|                                 <div className="mb-4"> | ||||
|                                     <label htmlFor="name" className="block text-sm font-medium text-gray-700">Your name</label> | ||||
|                                     <div className="mt-1"> | ||||
|                                         <input type="text" name="name" id="name" className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md" placeholder="John Doe" /> | ||||
|                                         <input type="text" name="name" id="name" required className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md" placeholder="John Doe" /> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 <div className="mb-4"> | ||||
|                                     <label htmlFor="email" className="block text-sm font-medium text-gray-700">Email address</label> | ||||
|                                     <div className="mt-1"> | ||||
|                                         <input type="text" name="email" id="email" className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md" placeholder="you@example.com" /> | ||||
|                                         <input type="email" name="email" id="email" required className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md" placeholder="you@example.com" /> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 <div className="mb-4"> | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Bailey Pumfleet
						Bailey Pumfleet