rusty.tapstables.com Open in urlscan Pro
192.124.249.76  Public Scan

URL: https://rusty.tapstables.com/
Submission Tags: phishingrod
Submission: On September 27 via api from DE — Scanned from DE

Form analysis 6 forms found in the DOM

POST index.php

<form method="post" action="index.php">
  <h3>Log In to Access Rusty Bull Sales.</h3><br class="clear">
  <hr>
  <p>Log in to update or <a class="forgot"> Forgot Password</a></p>
  <div class="form-group col-sm-6">
    <label for="email">Email address</label>
    <input type="email" class="form-control" id="email" required="true" placeholder="Email" name="email">
  </div>
  <div class="form-group col-sm-6">
    <label for="pass">Password</label>
    <input type="password" class="form-control" id="pass" required="true" placeholder="Password" name="pass">
  </div>
  <br class="clear">
  <input type="hidden" name="login" value="TRUE">
  <button type="submit" class="btn btn-primary">Log In</button>
</form>

POST reset.php

<form method="post" action="reset.php">
  <h3>Reset your password</h3>
  <p>Just enter your email address and we'll send you password reset instructions</p>
  <div class="form-group">
    <label for="email">Email address</label>
    <input type="email" class="form-control" id="email" required="true" placeholder="Email" name="email">
  </div>
  <br class="clear">
  <input type="hidden" name="forgot" value="TRUE">
  <input type="submit" class="btn btn-primary" value="Reset Password"> or <a class="login btn btn-primary">Log In</a>
</form>

POST

<form action="" method="post" enctype="multipart/form-data">
  <div class="row">
    <div class="col-12 col-md-6 mt-3">
      <label for="img1">Add Image:</label>
      <input type="file" name="img1" placeholder="Select an Image" class="form-control">
    </div>
    <div class="col-12 col-md-6 mt-3">
      <label for="imgDescr">Image Description:</label>
      <input type="text" name="imgDescr" placeholder="What am I looking at?" class="form-control">
    </div>
    <div class="col-12 col-md-6 mt-3">
      <label for="imgTags">Tags:</label>
      <input type="text" name="tags" placeholder="Tag as desired" class="form-control">
    </div>
    <div class="col-12 mt-3">
      <input type="hidden" name="custNum" value="">
      <input type="hidden" name="addLocImg" value="TRUE">
      <button class="btn btn-primary" type="submit">Add Image</button>
      <a class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#images">Back </a>
    </div>
  </div>
</form>

POST

<form method="post" action="" class="modalForm ">
  <div class="row">
    <div class="col-12 col-md-6">
      <h3>Taps</h3>
      <input type="number" name="numTaps" value="0"> Number of Total Taps <br>
      <input type="number" name="numCraftTaps" value=""> Number of Craft Taps <br>
      <input type="number" name="numMacroTaps" value=""> Number of Macro Taps <br>
      <input type="number" name="numLocalTaps" value=""> Number of Local Taps <br>
    </div>
    <hr class="d-block d-md-none">
    <div class="col-12 col-md-6">
      <h3>About the Beer</h3>
      <input type="checkbox" name="servesCraft" value="1"> Serves Craft <br>
      <input type="checkbox" name="servesLocal" value="1"> Serves Local <br>
    </div>
    <hr class="">
    <div class="row">
      <div class="col-12 col-md-6">
        <h3>Food</h3>
        <input type="checkbox" name="offersFood" value="1"> Offers Food <br>
        <label for="offersFoodType">Food Type</label>
        <input type="text" name="offersFoodType" value="" placeholder="Type of Cuisine Served" class="form-control"> <br><label for="busPrice" class="mt-3">Per Person Price (On-Prem)</label>
        <select name="busPrice" class="form-control">
          <option value="">CHOOSE</option>
          <option value="1">$&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(less than $20 pp)</option>
          <option value="2">$$&nbsp;&nbsp;&nbsp; ($20 - $40 pp)</option>
          <option value="3">$$$&nbsp;&nbsp; ($40 - $60 pp)</option>
          <option value="4">$$$$ ($60 + pp)</option>
        </select>
      </div>
      <hr class="d-block d-md-none">
      <div class="col-12 col-md-6">
        <h3>Chairs</h3>
        <input type="number" name="numChairsTotal" value="0"> Number of Chairs Total <br>
        <input type="number" name="numChairsBar" value="0"> Number of Chairs Bar <br>
      </div>
    </div>
  </div>
  <input type="hidden" name="locId" value="">
  <input type="hidden" name="myLoc" value="0">
  <input type="hidden" name="submitData" value="TRUE">
  <button class="btn btn-primary" type="submit" name="submit">Submit Data</button>
</form>

POST

<form action="" method="post" enctype="multipart/form-data">
  <div class="row">
    <div class="col-12 col-md-6 mt-3">
      <label for="posName">POS Item Name:</label>
      <input type="text" name="posName" placeholder="What do you call it?" class="form-control">
    </div>
    <div class="col-12 col-md-6 mt-3">
      <label for="posDescr">POS Item Description:</label>
      <input type="text" name="posDescr" placeholder="What is it, really?" class="form-control">
    </div>
    <div class="col-12 col-md-6 mt-3">
      <label for="posValue">Item Value (per item, number only):</label>
      <input type="number" name="posValue" placeholder="Cost per item" class="form-control">
    </div>
    <div class="col-12 col-md-6 mt-3">
      <label for="posImg">Add Image:</label>
      <input type="file" name="posImg" placeholder="Select an Image" class="form-control">
    </div>
    <!--
              <div class="col-12 mt-3">
                <label for="posNotes">Notes:</label>
                <textarea name="posNotes" placeholder="Any info you want to record about this particular item to distinguish from any other" class="form-control" ></textarea>
              </div>
            -->
    <div class="col-12 col-md-6 mt-3">
      <input type="hidden" name="custNum" value="">
      <input type="hidden" name="addPosItem" value="TRUE">
      <button class="btn btn-primary" type="submit">Add POS Item</button>
      <a class="btn btn-primary float-start" data-bs-toggle="modal" data-bs-target="#pos">Back</a>
    </div>
  </div>
</form>

POST

<form action="" method="post">
  <div class="row">
    <div class="col-6 col-md-4">
      <h2 class="blue">Buckets</h2>
      <!--<p>for 6 packs</p>-->
    </div>
    <div class="col-6 col-md-4"><img src="img/pos/669172286067b.jpg" class="imgPos float-start"></div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity44" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff44" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked44" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes44" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-6 col-md-4">
      <h2 class="blue">Case Stackers</h2>
      <!--<p>End cap case stackers</p>-->
    </div>
    <div class="col-6 col-md-4">
      <h2 class="blue">No Image</h2>
    </div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity2" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff2" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked2" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes2" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-6 col-md-4">
      <h2 class="blue">Coasters</h2>
      <!--<p>Sleeve of 1000</p>-->
    </div>
    <div class="col-6 col-md-4"><img src="img/pos/669171660ad08.jpg" class="imgPos float-start"></div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity47" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff47" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked47" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes47" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-6 col-md-4">
      <h2 class="blue">Pint Glasses</h2>
      <!--<p></p>-->
    </div>
    <div class="col-6 col-md-4">
      <h2 class="blue">No Image</h2>
    </div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity48" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff48" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked48" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes48" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-6 col-md-4">
      <h2 class="blue">Tap Handle: ICL ACTIVE </h2>
      <!--<p>Brand specific tap handle</p>-->
    </div>
    <div class="col-6 col-md-4">
      <h2 class="blue">No Image</h2>
    </div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity45" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff45" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked45" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes45" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-6 col-md-4">
      <h2 class="blue">Tap Handles: ICL</h2>
      <!--<p>Handle with logo</p>-->
    </div>
    <div class="col-6 col-md-4"><img src="img/pos/6691718bcc400.jpg" class="imgPos float-start"></div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity1" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff1" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked1" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes1" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-6 col-md-4">
      <h2 class="blue">Umbrellas</h2>
      <!--<p>ICL branded</p>-->
    </div>
    <div class="col-6 col-md-4">
      <h2 class="blue">No Image</h2>
    </div>
    <div class="col-12 col-md-3">
      <div class="col-12 mt-3">
        <label for="quantity">Location Quantity:</label>
        <input type="text" name="quantity46" placeholder="How many?" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="dropOff">Drop Off Date:</label>
        <input type="date" name="dropOff46" class="form-control" value="">
      </div>
      <div class="col-12  mt-3">
        <label for="lastChecked">Last Checked:</label>
        <input type="date" name="lastChecked46" class="form-control" value="">
      </div>
      <!--
                  <div class="col-12 mt-3">
                    <label for="locNotes">Location Notes:</label>
                    <textarea name="locNotes46" placeholder="Any info you want to record about terms of drop off?" class="form-control" ></textarea>
                  </div>
                  -->
    </div>
    <hr>
    <div class="col-12 col-md-6 mt-3">
      <input type="hidden" name="custNum" value="">
      <input type="hidden" name="posGiven" value="TRUE">
      <button class="btn btn-primary float-start " type="submit">Update Location POS</button>
    </div>
  </div>
</form>

Text Content

 Logout
 * Directory
 * My Reminders

 * --------------------------------------------------------------------------------

 * Reports
   * Visits
   * Orders
   * Reminders
   * Contacts
   * POS Items

 * --------------------------------------------------------------------------------

 * Users
 * Logout


SALES TRACKER: RUSTY BULL BREWING CO.




LOG IN TO ACCESS RUSTY BULL SALES.


--------------------------------------------------------------------------------

Log in to update or Forgot Password

Email address
Password

Log In


RESET YOUR PASSWORD

Just enter your email address and we'll send you password reset instructions

Email address

or Log In






 

SALES LINKS

Add Business


--------------------------------------------------------------------------------



© 2024 Taps + Tables. All rights reserved.
Built by Taps + Tables.


PUBLIC IMAGES

Please note: These are all of the public images for this location. If you add an
image here it will be viewable by all subscribers. To add an image only visible
to your business, add it to a Meeting / Visit.

--------------------------------------------------------------------------------


BE THE FIRST TO ADD AN IMAGE!

Add Images


ADD PUBLIC IMAGE TO


NOTE: THESE IMAGES WILL BE PUBLICLY VIEWABLE

--------------------------------------------------------------------------------

Add Image:
Image Description:
Tags:
Add Image Back


ABOUT THIS PLACE
(OUTSIDE DATA)


UPDATE BLANKS TO HELP PROVIDE MORE INFORMATION ON THIS BUSINESS.

Numbers in parentheses are an average of all other entries. (Total other
entries: 0)

--------------------------------------------------------------------------------


TAPS

Number of Total Taps
Number of Craft Taps
Number of Macro Taps
Number of Local Taps


--------------------------------------------------------------------------------


ABOUT THE BEER

Serves Craft
Serves Local


--------------------------------------------------------------------------------


FOOD

Offers Food
Food Type
Per Person Price (On-Prem) CHOOSE $     (less than $20 pp) $$    ($20 - $40 pp)
$$$   ($40 - $60 pp) $$$$ ($60 + pp)

--------------------------------------------------------------------------------


CHAIRS

Number of Chairs Total
Number of Chairs Bar

Submit Data


ADD A NEW POS ITEM

If you have another widget that you want to track, add it here. It will default
to zero (0) on all locations until you tell the system otherwise.

POS Item Name:
POS Item Description:
Item Value (per item, number only):
Add Image:
Add POS Item Back


ADD POS ITEM GIVEN TO LOCATION


BUCKETS


Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------


CASE STACKERS


NO IMAGE

Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------


COASTERS


Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------


PINT GLASSES


NO IMAGE

Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------


TAP HANDLE: ICL ACTIVE


NO IMAGE

Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------


TAP HANDLES: ICL


Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------


UMBRELLAS


NO IMAGE

Location Quantity:
Drop Off Date:
Last Checked:

--------------------------------------------------------------------------------

Update Location POS