DTF Print & Press V26
About this app
DTF Print & Press application to streamline your print order process with smart features and a fun interface.
DTF Print & Press V26 DTF Print & Press V26 Powered by SeaSide Silk Screening Name/PO Number Quantity 0 (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 Cost: 0.00 Reset
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="DTF Print & Press application to streamline your print order process with smart features and a fun interface.">
<meta name="keywords" content="DTF Printing, Print Order, T-Shirt Printing, Custom Apparel, SeaSide Silk Screening">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<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 {
document.addEventListener("DOMContentLoaded", function() {
var quantityField = document.getElementById("quantity");
var productTypeField = document.getElementById("productType");
var printLocationField1 = document.getElementById("printLocation1");
var printLocationField2 = document.getElementById("printLocation2");
var printLocationField3 = document.getElementById("printLocation3");
var printLocationField4 = document.getElementById("printLocation4");
var totalCostField = document.getElementById("totalCost");
var receivingCostField = 0.16; // Fixed cost per shirt
function calculateTotal() {
var quantity = parseInt(quantityField.value) || 0;
var productCost = parseInt(productTypeField.options[productTypeField.selectedIndex].value);
var loc1Cost = parseInt(printLocationField1.options[printLocationField1.selectedIndex].value);
var loc2Cost = parseInt(printLocationField2.options[printLocationField2.selectedIndex].value);
var loc3Cost = parseInt(printLocationField3.options[printLocationField3.selectedIndex].value);
var loc4Cost = parseInt(printLocationField4.options[printLocationField4.selectedIndex].value);
var total = (productCost + loc1Cost + loc2Cost + loc3Cost + loc4Cost + (receivingCostField * quantity)) * quantity;
totalCostField.innerText = total.toFixed(2);
}
quantityField.addEventListener("input", function() {
document.getElementById("quantityDisplay").innerText = quantityField.value;
calculateTotal();
});
productTypeField.addEventListener("change", calculateTotal);
printLocationField1.addEventListener("change", calculateTotal);
printLocationField2.addEventListener("change", calculateTotal);
printLocationField3.addEventListener("change", calculateTotal);
printLocationField4.addEventListener("change", calculateTotal);
document.getElementById("resetButton").addEventListener("click", function() {
document.getElementById("form").reset();
document.getElementById("quantityDisplay").innerText = 0;
totalCostField.innerText = "0.00";
calculateTotal();
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #70A1FF, #F9F9F9);
color: #34495e;
}
#main-container {
margin-top: 50px;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
background-color: white;
}
.header-title {
font-size: 32px;
text-align: center;
color: #1abc9c;
}
.reset-button {
background-color: #ff4d4d;
border: none;
color: white;
padding: 10px 20px;
border-radius: 50%;
text-align: center;
display: inline-block;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s;
}
.reset-button:hover {
background-color: #e63946;
}
.small-text {
font-size: 12px;
color: #7f8c8d;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 class="header-title">DTF Print & Press V26</h1>
<p class="text-center small-text">Powered by SeaSide Silk Screening</p>
<form id="form">
<div class="mb-3">
<label for="namePO" class="form-label">Name/PO Number</label>
<input type="text" class="form-control" id="namePO" required>
</div>
<div class="mb-3">
<label for="quantity" class="form-label">Quantity</label>
<input type="range" min="0" max="100" step="1" value="0" id="quantity" class="form-range" oninput="this.nextElementSibling.value=this.value">
<output>0</output>
<small class="form-text small-text">(Qty Price Breaks 24, 36, 48, 72, 144, 288)</small>
</div>
<div class="mb-3">
<label for="productType" class="form-label">Product Type</label>
<select class="form-select" id="productType" required>
<option value="0">T-Shirt ($0)</option>
<option value="1">Polo ($1)</option>
<option value="2">Fleece ($2)</option>
<option value="3">Cap ($3)</option>
</select>
</div>
<div class="mb-3">
<label for="printLocation1" class="form-label">Print Location 1</label>
<select class="form-select" id="printLocation1" required>
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>
<div class="mb-3">
<label for="printLocation2" class="form-label">Print Location 2</label>
<select class="form-select" id="printLocation2" required>
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>
<div class="mb-3">
<label for="printLocation3" class="form-label">Print Location 3</label>
<select class="form-select" id="printLocation3" required>
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>
<div class="mb-3">
<label for="printLocation4" class="form-label">Print Location 4</label>
<select class="form-select" id="printLocation4" required>
<option value="0">N/A ($0)</option>
<option value="1">Left Front Chest ($1)</option>
<option value="1">Right Front Chest ($1)</option>
<option value="2">Full Front ($2)</option>
<option value="2">Full Back ($2)</option>
</select>
</div>
<h5>Total Cost: <span id="totalCost">0.00</span></h5>
<button type="button" id="resetButton" class="reset-button">Reset</button>
</form>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!