juice-shop/juice-shop

View on GitHub
frontend/src/app/qr-code/qr-code.component.html

Summary

Maintainability
Test Coverage
<!--
  ~ Copyright (c) 2014-2024 Bjoern Kimminich & the OWASP Juice Shop contributors.
  ~ SPDX-License-Identifier: MIT
  -->

<div class="qr-code mat-typography">

  <header>
    <h3>{{title | translate}}</h3>
  </header>

  <div fxLayout="column" fxLayoutGap="10px">

  <mat-divider></mat-divider>

  <div class="container">
    <a [href]="url"><qr-code [value]="data" [size]="300" [level]="'M'"></qr-code></a>
  </div>

  <small>{{address}}</small>

  </div>

  <footer>
    <button mat-raised-button mat-dialog-close class="close-dialog"><i class="fas fa-arrow-circle-left fa-lg"></i> {{'BTN_CLOSE' | translate}}</button>
  </footer>

</div>