    <?php

    session_start();
    include ("header.php");

    echo"
    <html>
    <title>Add Room</title>
    <head>    <link rel=STYLESHEET type=text/css href=css/style.css />  </head>

    <body>
    <div id=all>
    <fieldset style=text-align:center>
    <h1>Add Room Number</h1>
    <table class=login align=center>
    <form action='addRooms.php' method='post' name='me'>
    <tr>
    <td class=right>Accommodation ID:</td>
    <td><input type='text' name='addRoom'></td>
    </tr>

    <tr>
    <td class=right>Room Number:</td>
    <td><input type='text' name='room'><td>
    </tr>

    <tr>
    <td class=right>Accommodation Password:</td>
    <td><input type='password' name='pass'><td>
    </tr>

    <tr>
    <td></td>
    <td colspan=4>
    <input type='submit' name='submit' value='ADD' />
    <a href=main.php><input type='submit' value='Cancel'></a>
    </td>
    </tr>
    </form>
    </table>
    </fieldset>
    </div>
    </body>
    </html>
    ";
       ?>