Skip to content

Commit

Permalink
Update index.php
Browse files Browse the repository at this point in the history
  • Loading branch information
filasik committed Oct 20, 2023
1 parent 2856c9b commit ea611df
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div class="container w-50">
<h1 class="mt-5"><img src="/assets/images/qr-code-scan.svg" style="width:2vw" class="me-2">qrko.skerik.me</h1>
<p>QR Code Generator - absolutely free.</p>
<div class="container w-lg-50 w-75">
<h1 class="mt-5"><img src="/assets/images/qr-code-scan.svg" style="width:30px" class="me-2">qrko.skerik.me</h1>
<p class="lead">QR Code Generator - absolutely free.</p>
<form method="post">
<label for="url">Enter URL...</label>
<input id="url" type="text" name="url" class="form-control my-3 form-control-lg" placeholder="URL" required>
<input type="submit" class="btn btn-outline-dark btn-lg" name="generate" value="Generate QR">
</form>

<div class="col-12 text-center">
<div class="col-12 text-center my-5">
<?php
// if form is submitted
if (isset($_POST['generate'])) {
Expand All @@ -41,9 +41,12 @@

?>
</div>
<a href="https://github.com/filasik/qrko.skerik.me" class="text-muted pt-5" target="_blank">Github repository</a>
| <a href="https://skerik.me" class="text-muted pt-5" target="_blank">skerik.me</a>
</div>



<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
Expand Down

0 comments on commit ea611df

Please sign in to comment.