Sure, here it is 
<html
class=“no-js{% if request.design_mode %} shopify-design-mode{% endif %}”
lang=“{{ request.locale.iso_code }}”
>
{%- render ‘stylesheets’ -%}
{%- if settings.favicon != blank -%}
<link
rel=“icon”
type=“image/png”
href=“{{ settings.favicon | image_url: width: 32, height: 32 }}”
>
{%- endif -%}
{% comment %} This a way to wait for main content to load when navigating to a new page so that the view transitions can work consistently {% endcomment %}
<link
rel=“expect”
href=“#MainContent”
blocking=“render”
id=“view-transition-render-blocker”
>
.password-enter {
position: absolute;
top: 82%;
bottom: 0;
right: 0;
left: 0;
}
.shopify-section:not(.header-section):has(.section) {
margin-top: 2rem;
}
{%- render ‘meta-tags’ -%}
{%- render ‘fonts’ -%}
{%- render ‘scripts’ -%}
{%- render ‘theme-styles-variables’ -%}
{%- render ‘color-schemes’ -%}
{% if request.design_mode %}
{%- render ‘theme-editor’ -%}
{% endif %}
{{ content_for_header }}
<main
id=“MainContent”
class=“content-for-layout”
role=“main”
>
{{ content_for_layout }}
{{ ‘content.powered_by’ | t }}
<button
class=“button-unstyled password-enter__button”
on:click=“#password-form/showDialog”
>
{{ ‘actions.enter_using_password’ | t }}
- {{ 'accessibility.new_window' | t }}
{%- form ‘storefront_password’ -%}
<dialog
ref=“dialog”
class=“password-dialog”
{% if form.errors %}
open
{% endif %}
>
<button
class=“button-unstyled password-dialog__close-button”
on:click=“dialog-component/closeDialog”
type=“button”
>
<span
class=“svg-wrapper svg-wrapper–small”
title=“{{ ‘actions.close’ | t }}”
>
{{ ‘icon-close.svg’ | inline_asset_content }}
{{ ‘actions.enter_password’ | t }}
<label
for=“Password”
class=“visually-hidden”
>
{{ ‘actions.enter_password’ | t }}
<input
type=“password”
name=“password”
id=“Password”
class=“field__input field__input–button-radius field__input–button-padding”
autocomplete=“current-password”
{% if form.errors %}
aria-invalid=“true”
aria-describedby=“PasswordLoginForm-password-error”
{%- endif -%}
placeholder=“{{ ‘placeholders.password’ | t }}”
autofocus
>
<button
class=“button password-dialog__submit-button”
type=“submit”
>
{{ ‘actions.submit’ | t }}
{%- if form.errors -%}
<div
id=“PasswordLoginForm-password-error”
class=“email-signup__message email-signup__message–error”
tabindex=“-1”
>
<svg
viewBox=“0 0 20 20”
xmlns=" SVG namespace "
focusable=“false”
aria-hidden=“true”
class=“icon-error”
>
{%- render 'icon', icon: 'error' -%}
{{ ‘content.wrong_password’ | t }}
{%- endif -%}
{%- endform -%}
{% # theme-check-disable ParserBlockingScript %}
{% # theme-check-enable ParserBlockingScript %}