-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit-profile.php
103 lines (96 loc) · 3.06 KB
/
edit-profile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php require_once("build/includes/initialize.php"); ?>
<html class="no-js" id="lookgram" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="javascripts/foundation/modernizr.foundation.js"></script>
<?php require_once("build/includes/head-css.php"); ?>
<?php require_once("build/includes/head-js-libs.php"); ?>
<!-- main JS -->
<script src="js/main.js" type="text/javascript"></script>
<!-- profile JS -->
<script src="js/profile.js" type="text/javascript"></script>
<!-- edit profile page -->
<title>Lookgr.am</title>
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
</head>
<body id="edit-profile">
<div class="page">
<header class="top-nav">
<div class="wrapper">
<a href="/" class="home-button">
<div>
<span class="entypo">⌂</span>
</div>
</a>
<hgroup>
<h1 class="logo">
<a href="/">Lookgr.am</a>
</h1>
</hgroup>
<div class="account-state">
<?php
if (!isset($_SESSION['logged_in']) || $_SESSION['logged_in'] == false) {
require('build/includes/header-logged-out-buttons.php');
} else if ($_SESSION['logged_in'] == 'true') {
require('build/includes/header-account-info.php');
}
?>
</div>
</div>
</header>
<?php
echo 'get ready to edit shit.';
// $edit_profile = new EditProfile($profile_id);
// $edit_profile->print_edit_profile();
?>
<div class="main">
<nav class="nav-page-content">
<h2>YOUR ACCOUNT</h2>
<ul>
<li><a href="/edit-profile.php">Edit Profile</a></li>
<li><a href="/change-password.php">Change Password</a></li>
<li><a href="#">Log Out</a></li>
</ul>
</nav>
<section class="content">
<header>
<h1>Edit Profile</h1>
</header>
<form>
<p class="form-text">
<label for="username">Username</label>
<input name="username" value="username" maxlength="30" type="text" id="username" />
</p>
<p class="form-text">
<label for="username">Change picture</label>
<input name="username" value="Picture" maxlength="30" type="text" id="username" />
</p>
<p class="form-text">
<label for="description">Description</label>
<input name="description" value="description" type="text" id="description" />
</p>
<p class="form-action">
<input type="submit" class="button green" />
</p>
</form>
</section>
</div>
</div>
<!-- .page -->
<div class="footer">
<ul>
<li><a href="#">YOUR ACCOUNT</a></li>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">SUPPORT</a></li>
<li><a href="#">BLOG</a></li>
<li><a href="#">API</a></li>
<li><a href="#">JOBS</a></li>
<li><a href="#">PRIVACY</a></li>
<li><a href="#">TERMS</a></li>
</ul>
<span>COPYRIGHT 2012 TRENDI</span>
</div>
</body>
</html>