javywithawhy / MGMT-460

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

Shipping #5

Open javywithawhy opened 1 year ago

javywithawhy commented 1 year ago

Functional Requirement #4: Add ability to track shipment of 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 Shipping Entry</h1>
        <form>
            <input type="text" placeholder="PO Number" required><br>
            <input type="text" placeholder="Address" required><br> 
            <input type="text" placeholder="Point of Contact" required><br> 
            <input type="text" placeholder="Phone Number" required><br>
            <input type="text" placeholder="Weight" required><br> 
            <input type="text" placeholder="Shipping Company" required><br>
            <textarea placeholder="Description"></textarea><br>
            <input type="submit" value="Add Entry"><br>   
        </form>
    </body>
</html>