-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-profile.php
executable file
·57 lines (47 loc) · 1.37 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
<?php
?>
<div class="container">
<div class="content">
<div class="projectTitle bootstrap">
<h1>Join ProjectHub<br/>
<small> </small>
</h1>
</div>
<div id="success">
<?php
if (isset($message)) { echo "<p class='message'>".$message."</p>"; }
if (isset($errors)) {
foreach ($errors as $error) { echo "<p class='error'>".$error."</p>"; }
unset($_SESSION['errors']);
}
?>
</div>
<div class="project">
<div id="regbox">
<form name="register" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post">
<p>
<label>About you:</label>
<textarea name="blurb" id="blurb"></textarea>
</p>
<p>
<label>Your skills and interests:</label>
<input type="text" name="tags" />
</p>
</form>
</div>
</div>
</div>
</div>
<script>
$(function() {
$('#blurb').editable({
inlineMode: false,
width: 800,
language: 'en_gb',
buttons: ['undo', 'redo' , 'sep', 'bold', 'italic', 'underline']
})
});
</script>
<?php
include('includes/footer.php');
?>