HEX
Server: Apache/2.2.15 (CentOS)
System: Linux ip-10-0-2-146.eu-west-1.compute.internal 2.6.32-754.35.1.el6.centos.plus.x86_64 #1 SMP Sat Nov 7 11:33:42 UTC 2020 x86_64
User: root (0)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /www/exchange2/exchange/admin/validator/layout.php
<html>
<head>
	<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">

	<!-- Optional theme -->
	<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
	<!-- Latest compiled and minified JavaScript -->
	<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body>
	<div class="container">
		<form method="post" enctype="multipart/form-data">
			<fieldset>
				<legend>BARCLAYS file validator</legend>
			<div class="form-group">
				<label for="exampleInputFile">Barclays file</label>
				<input type="file" id="exampleInputFile" name="file" accept=".txt">
			</div>
			<div>--- or---- </div>
			<div class="form-group">
				<label for="text">Barclays file content</label>
				<textarea class="form-control" id="text" name="text"></textarea>
			</div>
			<button type="submit" class="btn btn-default">Submit</button>
		</form>
		<?php
			if(isset($showResults) and $showResults){
				include 'report.php';
			}
		?>
	</div><!-- /.container -->
</body>
</html>