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>