-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.php
More file actions
94 lines (67 loc) · 2.46 KB
/
Copy pathnew.php
File metadata and controls
94 lines (67 loc) · 2.46 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
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
<?php
//Incluimos el archivo de configuracion
require 'src/config.php';
//Incluimos las funciones
require 'src/include.php';
?>
<html>
<head>
<!-- Head -->
<?php require 'src/theme/head.php'; ?>
<!-- Titulo de la web -->
<title>New project - TilingScan</title>
</head>
<body>
<?php require 'src/theme/menu.php'; ?>
<!-- Espacios -->
<br><br>
<!-- Div principal -->
<div class="main" align="center">
<!-- Titulo -->
<span class="h1">New project</span><br><br>
<!-- Descripcion -->
<span class="h2">Here you can create a new project:</span>
<!-- Espacios -->
<br><br><br>
<!-- Formulario -->
<form name="create" enctype="multipart/form-data" action="./upload" method="post" class="form">
<!-- <input type="hidden" name="MAX_FILE_SIZE" value="30000000000000000000000000000"> -->
<!-- Titulo del proyecto -->
<b>Project title:</b><br>
<input name="titulo" id="titulo" type="text" class="input-500"><br><br>
<!-- Descripcion del proyecto -->
<b>Project description:</b><br>
<textarea name="descripcion" id="descripcion" class="input-500"></textarea><br><br>
<!-- Autor -->
<b>Author:</b><br>
<input name="autor" id="autor" type="text" class="input-500"><br><br>
<!-- Fichero de anotacion -->
<b>Annotation file:</b><br>
<input name="file_A" id="file_A" type="file" class="input-500"><br><br>
<!-- Strand -->
<b>Experiment type:</b><br>
<select name="strand" id="strand" class="select" onchange="NewCambiarStrand(this);">
<option value="true">Strand specific</option>
<option value="false">Non Strand specific</option>
</select><br><br>
<!-- Fichero forward -->
<b>Forward file:</b><br>
<input name="file_F" id="file_F" type="file" class="input-500"><br><br>
<!-- Si es especifica -->
<div id="reverse_box" style="display: block;">
<!-- Fichero reverse -->
<b>Reverse file:</b><br>
<input name="file_R" id="file_R" type="file" class="input-500"><br><br><br>
</div>
<!-- Boton de enviar -->
<input type="submit" value="Create!" class="form-btn background-blue"><br>
<!-- Aviso -->
<small>(Be patient)</small>
<!-- Cerramos el form -->
</form>
</div>
<!-- Espacios -->
<br><br><br>
<?php require 'src/theme/foot.php'; ?>
</body>
</html>