<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bootstrap language detection</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="row">
<a href="/">
    <button class="btn-primary pull-left">
        back
    </button>
</a>
</div>
<div class="container">
    <form action="/examples/detected.php" method="post" class="form-horizontal">
        <div class="form-group">
            <label for="text">one or more words to detect language</label>
           <textarea class="form-control" id="text" name="text"></textarea>
        </div>
        <button type="submit" class="btn btn-default">Submit</button>
    </form>
</div>
</body>
</html>
 
  |