True Goal Final Presentation

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 12

True Goal Semester Project Presentation

Group 8

Motivation
We need motivation to take action towards our goals Our vision is to enhance healthy lifestyle and influence individuals with a motivational application called TrueGoal.

Personalization and Features


Which Days? How many times per day?

Select When to Receive Quotes

Select What kind of Quotes to receive

Inspirational, Love, Fitness etc

Protected by password and username.

Coding Process

Redundancy Reduction Compression to fit on mobile platform Ease of Use

DBConnect.php
define("mysqluser", "dbadmin"); define("mysqlpass", "admin"); define("mysqldb", "mis43127db"); define("hostname", "localhost"); if($connection = new PDO('mysql:host='.hostname.';dbname=' . mysqldb, mysqluser, mysqlpass))

Login Page Code


<div data-role="content"> <div style="text-align: center;"> <h2>Login Page</h2> </div> <form action="<?php echo $current_file; ?>" method="post"> <fieldset> <p><b>Username:</b></p></br> <input type="text" name="email" value="email" id="email"></br>

<p><b>Password:</b></p></br>
<input type="text" name="password" value="default" id="password"></br> <input type="submit" value="Submit">

Registry Page Code


$anemail=$_POST["email"]; $apassword=$_POST["password"]; $acellphone=$_POST["cellphone"];

$acarrier=$_POST["carrier"];
// Insert data into mysql $sql="INSERT INTO $tbl_name(email, password, phoneNumber, phoneCarrier)VALUES('$anemail', '$apassword', '$acellphone', '$acarrier')"; $result=mysql_query($sql);

True Goal Agenda Page


<fieldset data-role="controlgroup"> <label for="famous1">Steve Jobs</label><input type="radio" name="famous" id="famous1" value="1"> <label for="famous2">Will Smith</label><input type="radio" name="famous" id="famous2" value="2"> <label for="famous3">Muhammad Ali</label><input type="radio" name="famous" id="famous3" value="3"> <label for="famous4">Nelson Mandela</label><input type="radio" name="famous" id="famous4" value="4"> <label for="famous5">Ghandi</label><input type="radio" name="famous" id="famous5" value="5"> </fieldset>

<td>Current Time:<?php date_default_timezone_set("America/Chicago"); echo date('D ga'); ?></td>

True Goal Auto-Email


if($result){ $query = "SELECT 'email' FROM 'userinfo' WHERE 'email'='$username'"; $query2 = "SELECT '$amotive' FROM 'quotestable' WHERE '(famousID = $afamousperson)'"; $to = '$query'; $subject = 'True Goal Agenda Message'; $body = '$query2';

$headers = 'From: TrueGoal81@gmail.com';


mail($query, $subject, $body, $headers); header('Location:TrueGoalWelcomeCalendar.php');

User Interface

The People and Quotes


Steve Jobs Your time is limited Will Smith We all want to be in love... Muhammad Ali Impossible is Nothing Nelson Mandela It is better to lead from behind Gandhi

Data Diagram

You might also like