<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP-28-10-2015</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="col-md-6 col-md-offset-3">
<form action='action.php' method="post">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="number" class="form-control" id="exampleInputEmail1" placeholder="num1" name="num1">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="number" name="num2" class="form-control" id="exampleInputPassword1" placeholder="num2">
</div>
<!--
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
-->
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</body>
</html>
(more…)