-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdateProject.php
More file actions
56 lines (47 loc) · 2.04 KB
/
updateProject.php
File metadata and controls
56 lines (47 loc) · 2.04 KB
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
<?php
/**
* Created by PhpStorm.
* User: louis
* Date: 4/28/17
* Time: 10:28 AM
*/
session_start();
require_once('include/header.php');
$_SESSION['pid'] = $_GET['pid'];
?>
<!-- Page Title
============================================= -->
<section id="page-title">
<div class="container clearfix">
<h1>Create a new project</h1>
<span>Please type the basic info for the project you would like to be created. The below info are required, and cannot be empty.</span>
<ol class="breadcrumb">
<li><a href="index">Back</a></li>
</ol>
</div>
</section><!-- #page-title end -->
<script src="../bower_components/bootstrap-fileinput/js/fileinput.min.js"></script>
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="../bower_components/bootstrap-fileinput/css/fileinput.min.css">
<!-- Content
============================================= -->
<section id="CreateProject">
<div class="content-wrap">
<form id="project-basic" name="project-basic" class="nobottommargin" action="process_updateproject.php" method="post" enctype="multipart/form-data">
<div class="container clearfix">
<div class="col-md-12">
<label for="project-image">Upload multimedia file to your project</label>
<input type="file" name="file" id="file"><br>
<div class="col_full">
<label for="project-description">Project Description <small>*</small></label>
<textarea class="sm-form-control" id="project-description" name="project-description" rows="6" cols="30"></textarea>
</div>
<button type="submit" class="button button-3d fright">Update</button>
</div>
</div>
</form>
</div>
</section><!-- #content end -->
<?php
require_once ('include/footer.html');
?>