Zack Saadioui
1/23/2025
1
collection.liquid
1
collection-template.liquid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
liquid
{% if request.query.password == 'your_desired_password' %}
<!-- Your collection code here -->
{% else %}
<h1>Access Denied</h1>
<p>Please provide the correct password to view this collection.</p>
<input type="password" id="password-input">
<button onclick="checkPassword()">Submit</button>
<script>
function checkPassword() {
var password = document.getElementById('password-input').value;
window.location.href = '?password=' + password;
}
</script>
{% endif %}
1
your_desired_password
Copyright © Arsturn 2025