-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataFromTxt.php
84 lines (65 loc) · 3.06 KB
/
dataFromTxt.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
<?php
require "../phplib/genlibraries.php";
redirectOutside();
?>
<?php require "../htmlib/header.inc.php"; ?>
<body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white page-container-bg-solid page-sidebar-fixed">
<div class="page-wrapper">
<?php require "../htmlib/top.inc.php"; ?>
<?php require "../htmlib/menu.inc.php"; ?>
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<div class="page-content">
<!-- BEGIN PAGE HEADER-->
<!-- BEGIN PAGE BAR -->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<a href="/home/">Home</a>
<i class="fa fa-circle"></i>
</li>
<li>
<span>Get Data</span>
<i class="fa fa-circle"></i>
</li>
<li>
<span>From Text</span>
</li>
</ul>
</div>
<!-- END PAGE BAR -->
<!-- BEGIN PAGE TITLE-->
<h1 class="page-title"> Insert Text Data
</h1>
<!-- END PAGE TITLE-->
<!-- END PAGE HEADER-->
<div class="mt-element-step">
<div class="row step-line">
<div class="mt-step-desc">
Please insert below your data. We need to assign a file name to the provided data in order to convert it into a file for a more easy processing.
</div>
<?php require "../htmlib/stepsup.inc.php"; ?>
</div>
</div>
<form name="uploadFromTxt" id="uploadFromTxt" action="javascript:;" method="post">
<div class="form-group " id="">
<label>File Name</label>
<input type="text" name="filename" id="filename" class="form-control" placeholder="Insert your file name here">
</div>
<div class="form-group " id="">
<label>Text Data</label>
<textarea name="txtdata" id="txtdata" class="form-control" rows="6" placeholder="Insert your text data here"></textarea>
</div>
<div class="form-actions btn-send-data">
<input type="submit" class="btn green snd-metadata-btn" value="SEND DATA" style="position:relative;z-index:20;" >
</div>
</form>
</div>
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<?php
require "../htmlib/footer.inc.php";
require "../htmlib/js.inc.php";
?>