diff --git a/High_Five_SocialMedia/Info/1.jpg b/High_Five_SocialMedia/Info/1.jpg new file mode 100644 index 0000000..f9ec536 Binary files /dev/null and b/High_Five_SocialMedia/Info/1.jpg differ diff --git a/High_Five_SocialMedia/Info/2.jpg b/High_Five_SocialMedia/Info/2.jpg new file mode 100644 index 0000000..40b4297 Binary files /dev/null and b/High_Five_SocialMedia/Info/2.jpg differ diff --git a/High_Five_SocialMedia/Info/3.jpg b/High_Five_SocialMedia/Info/3.jpg new file mode 100644 index 0000000..d4dd523 Binary files /dev/null and b/High_Five_SocialMedia/Info/3.jpg differ diff --git a/High_Five_SocialMedia/Info/4.jpg b/High_Five_SocialMedia/Info/4.jpg new file mode 100644 index 0000000..a0e1a81 Binary files /dev/null and b/High_Five_SocialMedia/Info/4.jpg differ diff --git a/High_Five_SocialMedia/Info/5.jpg b/High_Five_SocialMedia/Info/5.jpg new file mode 100644 index 0000000..4728087 Binary files /dev/null and b/High_Five_SocialMedia/Info/5.jpg differ diff --git a/High_Five_SocialMedia/Info/Capture.PNG b/High_Five_SocialMedia/Info/Capture.PNG new file mode 100644 index 0000000..25b98ee Binary files /dev/null and b/High_Five_SocialMedia/Info/Capture.PNG differ diff --git a/High_Five_SocialMedia/Info/ripple.sql b/High_Five_SocialMedia/Info/ripple.sql new file mode 100644 index 0000000..4199dfe --- /dev/null +++ b/High_Five_SocialMedia/Info/ripple.sql @@ -0,0 +1,432 @@ +-- phpMyAdmin SQL Dump +-- version 4.8.0.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: 127.0.0.1 +-- Generation Time: May 18, 2019 at 05:49 PM +-- Server version: 10.1.32-MariaDB +-- PHP Version: 5.6.36 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET AUTOCOMMIT = 0; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `ripple` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `attchment` +-- + +CREATE TABLE `attchment` ( + `aid` int(11) NOT NULL, + `path` text, + `time_stamp` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `chats` +-- + +CREATE TABLE `chats` ( + `chid` int(11) NOT NULL, + `senderId` int(11) NOT NULL, + `receiverId` int(11) NOT NULL, + `message` text NOT NULL, + `type` varchar(100) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `comments` +-- + +CREATE TABLE `comments` ( + `comid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `pid` int(11) NOT NULL, + `parent_comid` int(11) NOT NULL, + `comment` text NOT NULL, + `time_stamp` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `flagged` +-- + +CREATE TABLE `flagged` ( + `fid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `reporter_id` int(11) NOT NULL, + `reason` text NOT NULL, + `response_level` varchar(50) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `friends` +-- + +CREATE TABLE `friends` ( + `fid` int(11) NOT NULL, + `uidr` int(11) NOT NULL, + `uidl` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `groups` +-- + +CREATE TABLE `groups` ( + `gid` int(11) NOT NULL, + `group_name` varchar(50) NOT NULL, + `age_restrict` int(11) NOT NULL, + `category` varchar(100) NOT NULL, + `description` text +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `group_members` +-- + +CREATE TABLE `group_members` ( + `gmid` int(11) NOT NULL, + `gid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `role` varchar(100) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `group_preferences` +-- + +CREATE TABLE `group_preferences` ( + `gpid` int(11) NOT NULL, + `gid` int(11) NOT NULL, + `visibility` int(11) NOT NULL, + `banned_users` text +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `posts` +-- + +CREATE TABLE `posts` ( + `pid` int(11) NOT NULL, + `gid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `aid` int(11) NOT NULL, + `type` varchar(100) NOT NULL, + `content` text NOT NULL, + `time_stamp` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `userinfo` +-- + +CREATE TABLE `userinfo` ( + `ufid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `firstname` varchar(50) DEFAULT NULL, + `lastname` varchar(50) DEFAULT NULL, + `home_town` varchar(100) DEFAULT NULL, + `current_city` varchar(100) DEFAULT NULL, + `occupation` varchar(100) DEFAULT NULL, + `about` text +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `users` +-- + +CREATE TABLE `users` ( + `uid` int(11) NOT NULL, + `username` varchar(50) NOT NULL, + `email` varchar(100) NOT NULL, + `password` varchar(50) NOT NULL, + `DOB` date NOT NULL, + `gender` varchar(10) NOT NULL, + `time_stamp` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, + `recovery_code` varchar(50) DEFAULT NULL, + `status` int(1) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `user_preferences` +-- + +CREATE TABLE `user_preferences` ( + `upid` int(11) NOT NULL, + `uid` int(11) NOT NULL, + `users_muted` text, + `groups_muted` text, + `users_blocked` text, + `groups_blocked` text, + `auto_download` int(11) NOT NULL, + `visibility_level` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `attchment` +-- +ALTER TABLE `attchment` + ADD PRIMARY KEY (`aid`); + +-- +-- Indexes for table `chats` +-- +ALTER TABLE `chats` + ADD PRIMARY KEY (`chid`), + ADD KEY `senderId` (`senderId`), + ADD KEY `receiverId` (`receiverId`); + +-- +-- Indexes for table `comments` +-- +ALTER TABLE `comments` + ADD PRIMARY KEY (`comid`), + ADD KEY `uid` (`uid`), + ADD KEY `pid` (`pid`), + ADD KEY `parent_comid` (`parent_comid`); + +-- +-- Indexes for table `flagged` +-- +ALTER TABLE `flagged` + ADD PRIMARY KEY (`fid`), + ADD KEY `uid` (`uid`); + +-- +-- Indexes for table `friends` +-- +ALTER TABLE `friends` + ADD PRIMARY KEY (`fid`), + ADD KEY `uidr` (`uidr`), + ADD KEY `uidl` (`uidl`); + +-- +-- Indexes for table `groups` +-- +ALTER TABLE `groups` + ADD PRIMARY KEY (`gid`); + +-- +-- Indexes for table `group_members` +-- +ALTER TABLE `group_members` + ADD PRIMARY KEY (`gmid`), + ADD KEY `gid` (`gid`), + ADD KEY `uid` (`uid`); + +-- +-- Indexes for table `group_preferences` +-- +ALTER TABLE `group_preferences` + ADD PRIMARY KEY (`gpid`), + ADD KEY `gid` (`gid`); + +-- +-- Indexes for table `posts` +-- +ALTER TABLE `posts` + ADD PRIMARY KEY (`pid`), + ADD KEY `uid` (`uid`); + +-- +-- Indexes for table `userinfo` +-- +ALTER TABLE `userinfo` + ADD PRIMARY KEY (`ufid`), + ADD KEY `uid` (`uid`); + +-- +-- Indexes for table `users` +-- +ALTER TABLE `users` + ADD PRIMARY KEY (`uid`); + +-- +-- Indexes for table `user_preferences` +-- +ALTER TABLE `user_preferences` + ADD PRIMARY KEY (`upid`), + ADD KEY `uid` (`uid`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `attchment` +-- +ALTER TABLE `attchment` + MODIFY `aid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `chats` +-- +ALTER TABLE `chats` + MODIFY `chid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `comments` +-- +ALTER TABLE `comments` + MODIFY `comid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `flagged` +-- +ALTER TABLE `flagged` + MODIFY `fid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `friends` +-- +ALTER TABLE `friends` + MODIFY `fid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `groups` +-- +ALTER TABLE `groups` + MODIFY `gid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `group_members` +-- +ALTER TABLE `group_members` + MODIFY `gmid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `group_preferences` +-- +ALTER TABLE `group_preferences` + MODIFY `gpid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `posts` +-- +ALTER TABLE `posts` + MODIFY `pid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `userinfo` +-- +ALTER TABLE `userinfo` + MODIFY `ufid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `users` +-- +ALTER TABLE `users` + MODIFY `uid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `user_preferences` +-- +ALTER TABLE `user_preferences` + MODIFY `upid` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- Constraints for dumped tables +-- + +-- +-- Constraints for table `chats` +-- +ALTER TABLE `chats` + ADD CONSTRAINT `chats_ibfk_1` FOREIGN KEY (`senderId`) REFERENCES `users` (`uid`), + ADD CONSTRAINT `chats_ibfk_2` FOREIGN KEY (`receiverId`) REFERENCES `users` (`uid`); + +-- +-- Constraints for table `comments` +-- +ALTER TABLE `comments` + ADD CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`), + ADD CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`pid`) REFERENCES `posts` (`pid`), + ADD CONSTRAINT `comments_ibfk_3` FOREIGN KEY (`parent_comid`) REFERENCES `comments` (`comid`); + +-- +-- Constraints for table `flagged` +-- +ALTER TABLE `flagged` + ADD CONSTRAINT `flagged_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`); + +-- +-- Constraints for table `friends` +-- +ALTER TABLE `friends` + ADD CONSTRAINT `friends_ibfk_1` FOREIGN KEY (`uidr`) REFERENCES `users` (`uid`), + ADD CONSTRAINT `friends_ibfk_2` FOREIGN KEY (`uidl`) REFERENCES `users` (`uid`); + +-- +-- Constraints for table `group_members` +-- +ALTER TABLE `group_members` + ADD CONSTRAINT `group_members_ibfk_1` FOREIGN KEY (`gid`) REFERENCES `groups` (`gid`), + ADD CONSTRAINT `group_members_ibfk_2` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`); + +-- +-- Constraints for table `group_preferences` +-- +ALTER TABLE `group_preferences` + ADD CONSTRAINT `group_preferences_ibfk_1` FOREIGN KEY (`gid`) REFERENCES `groups` (`gid`); + +-- +-- Constraints for table `posts` +-- +ALTER TABLE `posts` + ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`); + +-- +-- Constraints for table `userinfo` +-- +ALTER TABLE `userinfo` + ADD CONSTRAINT `userinfo_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`); + +-- +-- Constraints for table `user_preferences` +-- +ALTER TABLE `user_preferences` + ADD CONSTRAINT `user_preferences_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`); +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/High_Five_SocialMedia/Pictures/friend_pics/arab.jpg b/High_Five_SocialMedia/Pictures/friend_pics/arab.jpg new file mode 100644 index 0000000..2203518 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/friend_pics/arab.jpg differ diff --git a/High_Five_SocialMedia/Pictures/friend_pics/gandhi.jpg b/High_Five_SocialMedia/Pictures/friend_pics/gandhi.jpg new file mode 100644 index 0000000..93062b9 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/friend_pics/gandhi.jpg differ diff --git a/High_Five_SocialMedia/Pictures/friend_pics/orton.jpg b/High_Five_SocialMedia/Pictures/friend_pics/orton.jpg new file mode 100644 index 0000000..efe14d2 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/friend_pics/orton.jpg differ diff --git a/High_Five_SocialMedia/Pictures/friend_pics/sigma.jpg b/High_Five_SocialMedia/Pictures/friend_pics/sigma.jpg new file mode 100644 index 0000000..5ee0ffe Binary files /dev/null and b/High_Five_SocialMedia/Pictures/friend_pics/sigma.jpg differ diff --git a/High_Five_SocialMedia/Pictures/friend_pics/zambino.jpg b/High_Five_SocialMedia/Pictures/friend_pics/zambino.jpg new file mode 100644 index 0000000..6c76773 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/friend_pics/zambino.jpg differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/ben10.png b/High_Five_SocialMedia/Pictures/group_icons/ben10.png new file mode 100644 index 0000000..67603a8 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/ben10.png differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/biryani.jpg b/High_Five_SocialMedia/Pictures/group_icons/biryani.jpg new file mode 100644 index 0000000..ac4d369 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/biryani.jpg differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/cat.jpg b/High_Five_SocialMedia/Pictures/group_icons/cat.jpg new file mode 100644 index 0000000..181b936 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/cat.jpg differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/code.png b/High_Five_SocialMedia/Pictures/group_icons/code.png new file mode 100644 index 0000000..5e23a57 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/code.png differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/dc.png b/High_Five_SocialMedia/Pictures/group_icons/dc.png new file mode 100644 index 0000000..caa9435 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/dc.png differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/gamer.png b/High_Five_SocialMedia/Pictures/group_icons/gamer.png new file mode 100644 index 0000000..1031b5a Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/gamer.png differ diff --git a/High_Five_SocialMedia/Pictures/group_icons/monkey.jpg b/High_Five_SocialMedia/Pictures/group_icons/monkey.jpg new file mode 100644 index 0000000..e8d9ea0 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/group_icons/monkey.jpg differ diff --git a/High_Five_SocialMedia/Pictures/letter.png b/High_Five_SocialMedia/Pictures/letter.png new file mode 100644 index 0000000..c8151d2 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/letter.png differ diff --git a/High_Five_SocialMedia/Pictures/logo/dd.png b/High_Five_SocialMedia/Pictures/logo/dd.png new file mode 100644 index 0000000..7255d0f Binary files /dev/null and b/High_Five_SocialMedia/Pictures/logo/dd.png differ diff --git a/High_Five_SocialMedia/Pictures/logo/logo.png b/High_Five_SocialMedia/Pictures/logo/logo.png new file mode 100644 index 0000000..f96615c Binary files /dev/null and b/High_Five_SocialMedia/Pictures/logo/logo.png differ diff --git a/High_Five_SocialMedia/Pictures/posts/ben10_wallpaper.jpg b/High_Five_SocialMedia/Pictures/posts/ben10_wallpaper.jpg new file mode 100644 index 0000000..5657612 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/posts/ben10_wallpaper.jpg differ diff --git a/High_Five_SocialMedia/Pictures/svg/account.svg b/High_Five_SocialMedia/Pictures/svg/account.svg new file mode 100644 index 0000000..1da0081 --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/High_Five_SocialMedia/Pictures/svg/add.svg b/High_Five_SocialMedia/Pictures/svg/add.svg new file mode 100644 index 0000000..86ea7ca --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/add.svg @@ -0,0 +1,72 @@ + + + diff --git a/High_Five_SocialMedia/Pictures/svg/attachment.svg b/High_Five_SocialMedia/Pictures/svg/attachment.svg new file mode 100644 index 0000000..86ea7ca --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/attachment.svg @@ -0,0 +1,72 @@ + + + diff --git a/High_Five_SocialMedia/Pictures/svg/info.svg b/High_Five_SocialMedia/Pictures/svg/info.svg new file mode 100644 index 0000000..53c4f3e --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/info.svg @@ -0,0 +1,4 @@ + + diff --git a/High_Five_SocialMedia/Pictures/svg/messages.svg b/High_Five_SocialMedia/Pictures/svg/messages.svg new file mode 100644 index 0000000..2b47ee8 --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/messages.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/High_Five_SocialMedia/Pictures/svg/notifications.svg b/High_Five_SocialMedia/Pictures/svg/notifications.svg new file mode 100644 index 0000000..127b904 --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/notifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/High_Five_SocialMedia/Pictures/svg/online.png b/High_Five_SocialMedia/Pictures/svg/online.png new file mode 100644 index 0000000..d9225a3 Binary files /dev/null and b/High_Five_SocialMedia/Pictures/svg/online.png differ diff --git a/High_Five_SocialMedia/Pictures/svg/settings.svg b/High_Five_SocialMedia/Pictures/svg/settings.svg new file mode 100644 index 0000000..0737ecb --- /dev/null +++ b/High_Five_SocialMedia/Pictures/svg/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/High_Five_SocialMedia/hf_design.css b/High_Five_SocialMedia/hf_design.css new file mode 100644 index 0000000..d3f6ba9 --- /dev/null +++ b/High_Five_SocialMedia/hf_design.css @@ -0,0 +1,121 @@ +.login_page { + background-color: #f7f9fb; + font-size: 14px; +} + +.login_page .logo{ + width: 90px; + height: 90px; + overflow: hidden; + border-radius: 50%; + margin: 0 auto; + margin: 40px auto; + box-shadow: 0 4px 8px rgba(0,0,0,.05); + position: relative; + z-index: 1; + + +} + +.login_menu { + height: 450px; + width: 350px; + margin-left: 30em; + margin-top: 3.5em; + border: 1.5px solid black; +} + +.login_help{ + margin-left: 15px; + padding: 5px; +} + +.group_holder { + width: 90px; + padding-top: 15px; + padding-bottom: 15px; + margin-top: 2em; +} + +.group_screen{ + height: 570px; + width: 1200px; + margin-left: 8em; + margin-top: -38em; +} + +.group_label img{ + border: 1px solid black; + border-spacing: 1em; +} + +.group_label h5{ + font-size: 15px; + margin-left: 15px; + color: #17729d; + +} + +.user_post{ + height: auto; + width: auto; + margin-top: 0.25em; +} + +.user_post h5{ + font-size: 15px; + font-weight: bold; +} + +.post_buttons{ + padding: 5px; +} + +.group_posts_holder{ + margin-left: 0.1em; + +} + +.group_friend_icon{ + margin-left: 1.5em; + margin-top: 0.2em; + border: 1px solid black; +} + +.group_post_font{ + font-size: 15px; +} + +.post_timestamp{ + font-size: 11.5px; + margin-top: 0.3em; +} + +.comments{ +} + +.comment_pic{ + margin-left: 1em; +} + +.message_view{ + height: auto; + width: auto; + margin-left: 0em; + + } + +.message_view h5{ + font-size: 14px; +} + + + +.center-block { + display: block; + margin-right: auto; + margin-left: 8em; + } + + + diff --git a/High_Five_SocialMedia/login.html b/High_Five_SocialMedia/login.html new file mode 100644 index 0000000..50c1842 --- /dev/null +++ b/High_Five_SocialMedia/login.html @@ -0,0 +1,192 @@ + + + + +
+ + + +
+
+ Watched Ben 10 last night. Was awesome. Big Chill is best alien.
+
+ Check out this wallpaper
+
+
+ Dudes this so awesommmeee :O :)
+
Dude get a life
+Hahaha you're so lame. Heatblast is sooo much cooler
+