javywithawhy / MGMT-460

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

Inventory Management #2

Open javywithawhy opened 1 year ago

javywithawhy commented 1 year ago

Functional Requirement #1: Add ability to manage 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 Management Entry</h1>
        <form>
            <input type="text" placeholder="Name" required><br>
            <input type="text" placeholder="PO Number" required><br> 
            <input type="text" placeholder="Vendor" required><br> 
            <input type="text" placeholder="Location" required><br> 
            <textarea type="text" placeholder="Description"></textarea><br>
            <input type="submit" value="Add Entry"><br>   
        </form>
    </body>
</html>