javywithawhy / MGMT-460

Repository for Info Systems Dev
GNU General Public License v3.0
0 stars 0 forks source link

Inventory Tracking #3

Open javywithawhy opened 1 year ago

javywithawhy commented 1 year ago

Functional Requirement #2: Add ability to track inventory.

javywithawhy commented 1 year ago

Image

javywithawhy commented 1 year ago
<!doctype html>
<html>
    <head>
        <title>Inventroy App</title>
        <link href="styles/style.css" rel="stylesheet">
    </head>
    <body>
        <h1 class="myH1">New Inventroy Tracking Entry</h1>
        <form>
            <input type="text" placeholder="PO Number" required><br>
            <input type="text" placeholder="Tracking Number" required><br> 
            <input type="text" placeholder="Origin" required><br> 
            <input type="text" placeholder="Destination" required><br> 
            <input type="submit" value="Add Entry"><br>   
        </form>
    </body>
</html>