render()

in web/src/components/user-consent-banner/index.js [108:159]


  render() {
    return this._hasUserConsent
      ? nothing
      : html`
          <div class="user-consent-banner">
            <div class="user-consent-banner-inner">
              <div class="user-consent-banner-copy">
                <div class="user-consent-banner-header">NOTICE</div>
                <div class="user-consent-banner-description">
                  <slot name="content">
                    <p>
                      You are solely responsible for any input you submit to
                      this website. We advise that you refrain from submitting
                      any confidential information. If you receive inputs
                      previously submitted by someone else, please make sure to
                      check such content before resubmitting it yourself. The
                      website only provides an execution service, and it does
                      not verify your inputs for quality, security, safety,
                      privacy or any other purpose. Your inputs are only
                      processed for the purpose of providing the execution
                      service you request by pressing the "Run" button, and to
                      allow you to make the actions you perform on the website
                      repeatable and sharable by using the "Copy link" button.
                      Submitting harmful or law-infringing inputs and/or seeking
                      to produce harmful or law-infringing outputs is strictly
                      prohibited, and this website disclaims any liability for
                      such user actions. To maintain the functionality of the
                      service and to monitor its usage for statistical web
                      analytics purposes, this website collects basic usage
                      telemetry data. Such telemetry is limited to network
                      addresses and software agent identifiers. It excludes any
                      user-identifiable personal information.
                    </p>
                    <p>
                      By using this website, you acknowledge the above terms and
                      restrictions.
                    </p>
                  </slot>
                </div>
              </div>
              <div>
                <button
                  class="user-consent-banner-button"
                  @click="${this.acknowledgeNotice}"
                >
                  Acknowledge
                </button>
              </div>
            </div>
          </div>
        `;
  }