This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `secure_login` ( | |
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, | |
`email` VARCHAR(120) NOT NULL, | |
`password` VARCHAR(40) NOT NULL, | |
`session` VARCHAR(40) DEFAULT NULL, | |
`disabled` TINYINT(1) UNSIGNED DEFAULT 0, | |
`created_dt` DATETIME DEFAULT '0000-00-00 00:00:00', | |
`modified_ts` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, | |
PRIMARY KEY (`id`), | |
UNIQUE INDEX `uniq_idx` (`email`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='UTF-8' /> | |
<style type="text/css"> | |
<!-- | |
.chat_wrapper { | |
width: 500px; | |
margin-right: auto; | |
margin-left: auto; |