DTF Print & Press V26
About this app
Easily customize your DTF Print needs with our interactive form. Standardized pricing per item type and locations available.
DTF Print & Press V26 DTF Print & Press V26 Powered by SeaSide Silk Screening Name/PO Number Quantity Qty Price Breaks: 24, 36, 48, 72, 144, 288 Product Type T-Shirt - $0 Polo - $1 Fleece - $2 Cap - $3 Print Location 1 N/A - $0 Left Front Chest - $1 Right Front Chest - $1 Full Front - $2 Full Back - $2 Print Location 2 N/A - $0 Left Front Chest - $1 Right Front Chest - $1 Full Front - $2 Full Back - $2 Print Location 3 N/A - $0 Left Front Chest - $1 Right Front Chest - $1 Full Front - $2 Full Back - $2 Print Location 4 N/A - $0 Left Front Chest - $1 Right Front Chest - $1 Full Front - $2 Full Back - $2 Total Price: $0.00
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>DTF Print & Press V26</title>
<meta name="description" content="Easily customize your DTF Print needs with our interactive form. Standardized pricing per item type and locations available.">
<meta name="keywords" content="DTF Print,Print Forms,Custom Apparel,Order Quantity,Print Locations,Product Types,Silk Screening">
<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous">
</script>
<!-- Font Awesome (6.6.0) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
document.addEventListener("DOMContentLoaded", function() {
const productPrices = {
"T-Shirt": 0,
"Polo": 1,
"Fleece": 2,
"Cap": 3
};
const printLocationPrices = {
"N/A": 0,
"Left Front Chest": 1,
"Right Front Chest": 1,
"Full Front": 2,
"Full Back": 2
};
// Update price on selection change
function updatePrice() {
const productType = document.getElementById("product-type").value;
const printLocation1 = document.getElementById("print-location-1").value;
const quantity = parseInt(document.getElementById("quantity").value) || 0;
const total = (productPrices[productType] + printLocationPrices[printLocation1]) * quantity;
document.getElementById("total-price").innerText = `Total Price: $${total.toFixed(2)}`;
}
// Quantity slider change event
$("#quantity").on("change", function() {
updatePrice();
});
// Product selection change event
$("#product-type").on("change", function() {
updatePrice();
});
// Print location selection change event
$(".print-location").on("change", function() {
updatePrice();
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #74ebd5, #9face6);
color: #333;
}
#main-container {
padding: 20px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
label {
font-weight: bold;
}
.info {
font-size: small;
color: grey;
}
.price {
margin-top: 20px;
font-weight: bold;
font-size: larger;
}
</style>
</head>
<body>
<div id="main-container" class="container mt-5">
<h2 class="text-center">DTF Print & Press V26</h2>
<p class="text-center info">Powered by SeaSide Silk Screening</p>
<form>
<div class="mb-3">
<label for="name-po" class="form-label">Name/PO Number</label>
<input type="text" id="name-po" class="form-control" required>
</div>
<div class="mb-3">
<label for="quantity" class="form-label">Quantity</label>
<input type="number" id="quantity" class="form-control" min="1" value="1" required>
<input type="range" id="quantity-range" class="form-range" min="1" max="100" value="1">
<div class="info">Qty Price Breaks: 24, 36, 48, 72, 144, 288</div>
</div>
<div class="mb-3">
<label for="product-type" class="form-label">Product Type</label>
<select id="product-type" class="form-select" required>
<option value="T-Shirt">T-Shirt - $0</option>
<option value="Polo">Polo - $1</option>
<option value="Fleece">Fleece - $2</option>
<option value="Cap">Cap - $3</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-1" class="form-label">Print Location 1</label>
<select id="print-location-1" class="form-select print-location" required>
<option value="N/A">N/A - $0</option>
<option value="Left Front Chest">Left Front Chest - $1</option>
<option value="Right Front Chest">Right Front Chest - $1</option>
<option value="Full Front">Full Front - $2</option>
<option value="Full Back">Full Back - $2</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-2" class="form-label">Print Location 2</label>
<select id="print-location-2" class="form-select print-location" required>
<option value="N/A">N/A - $0</option>
<option value="Left Front Chest">Left Front Chest - $1</option>
<option value="Right Front Chest">Right Front Chest - $1</option>
<option value="Full Front">Full Front - $2</option>
<option value="Full Back">Full Back - $2</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-3" class="form-label">Print Location 3</label>
<select id="print-location-3" class="form-select print-location" required>
<option value="N/A">N/A - $0</option>
<option value="Left Front Chest">Left Front Chest - $1</option>
<option value="Right Front Chest">Right Front Chest - $1</option>
<option value="Full Front">Full Front - $2</option>
<option value="Full Back">Full Back - $2</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-4" class="form-label">Print Location 4</label>
<select id="print-location-4" class="form-select print-location" required>
<option value="N/A">N/A - $0</option>
<option value="Left Front Chest">Left Front Chest - $1</option>
<option value="Right Front Chest">Right Front Chest - $1</option>
<option value="Full Front">Full Front - $2</option>
<option value="Full Back">Full Back - $2</option>
</select>
</div>
<div class="price" id="total-price">Total Price: $0.00</div>
</form>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!