File size: 3,580 Bytes
3f268e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!--
/*
 * Copyright 2017 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
-->
<!DOCTYPE html>
<html lang="en">

	<%- include('../../common/head') %>

	<body class="nav-md">
		<div class="container body">
			<div class="main_container">
				<%- include('sidebar') %>

				<!-- top navigation -->
				<div class="top_nav navbar-fixed-top">
					<div class="nav_menu">
						<nav class="" role="navigation">
							<div class="nav toggle">
								<a id="menu_toggle">
									<i class="fa fa-bars"></i>
								</a>
							</div>
							<ul class="nav navbar-nav">
								<h3 id='page-title' class="navbar-text">
									<span id='page_title_description'></span>
								</h3>
							</ul>
						</nav>
					</div>
				</div>

				<%
          var guest=true;
          if (user!==undefined) {
            if (user.username=='admin') {
              guest=false;
            }
          }
          %>
				<!-- page content -->
				<div class="right_col" role="main" style="padding-top: 50px;">
					<!-- top tiles -->
					<div class="row">

            <div class="container" id="formulaire">
              <div class="row">
                <div class="col-md-12">
                  <br>
                  <br>
                  <center>
                    <h1>Delete a project</h1>
										<h4>WARNING: all data in this project are going to be physically deleted.</h4>
                  </center>
                  <br>
                </div>
                <div class="col-md-offset-4 col-md-4">
                  <form action="/admin/deleteProject" method="post">
										<input type="hidden" value="<%=projectId%>" name="projectId"/>
                    <div class="form-group">
                      <label>ProjectId</label>
                      <input type="text" disabled class="form-control" value="<%=projectId%>"/>
                    </div>
                    <div class="form-group">
                      <label>Description</label>
                      <input type="text" disabled class="form-control" value="<%=project.description%>" name="description"/>
                    </div>
										<div class="form-group">
											<label>Infos</label>
											<textarea class="form-control" disabled rows="10" name="infos"><%=project.infos%></textarea>
										</div>
										<div class="form-group">
											<label>Users</label>
											<textarea class="form-control" disabled rows="10" name="users"><%=project.users%></textarea>
										</div>
                    <center>
                      <br>
                      <button class="btn btn-danger btn-block" type="submit" id="submitButton">Please confirm deletion</button>
                    </center>
                  </form>
                </div>
              </div>
            </div>
					</div>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<br>
					<div class="clearfix"></div>

					<%- include('../footer') %>

				</div>
			</div>
		</div>
	</body>
</html>