Προσθήκη email validation στον οδηγό κράτησης ραντεβού.

This commit is contained in:
alextselegidis@gmail.com 2013-06-27 13:37:45 +00:00
parent 8a35846416
commit 07e244247d
2 changed files with 3 additions and 3 deletions

View file

@ -225,7 +225,7 @@
<input type="text" id="phone-number" class="required" maxlength="60" /> <input type="text" id="phone-number" class="required" maxlength="60" />
<br/><br/> <br/><br/>
<em class="text-error">Fields with * are mandatory.</em> <em id="form-message" class="text-error">Fields with * are mandatory.</em>
</div> </div>
<div class="span3"> <div class="span3">

View file

@ -1,13 +1,13 @@
<?php <?php
class SystemConfiguration { class SystemConfiguration {
// General Settings // General Settings
public static $base_url = 'http://localhost/dev/external/easy_appointments/trunk/src/'; public static $base_url = 'http://localhost/dev/easy_appointments/trunk/src/';
// Database Settings // Database Settings
public static $db_host = 'localhost'; public static $db_host = 'localhost';
public static $db_name = 'easy_appointments'; public static $db_name = 'easy_appointments';
public static $db_username = 'root'; public static $db_username = 'root';
public static $db_password = ''; public static $db_password = 'root';
// Google Calendar API Settings // Google Calendar API Settings
public static $google_product_name = 'Easy!Appointments'; public static $google_product_name = 'Easy!Appointments';