bswr.xyz Open in urlscan Pro
92.112.189.189  Public Scan

URL: https://bswr.xyz/
Submission: On November 06 via api from BE — Scanned from CA

Form analysis 18 forms found in the DOM

POST generate_qr.php

<form id="qr-form-link" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="link-url">Website</label>
    <input type="url" class="form-control" id="link-url" name="data" placeholder="Enter URL" required="">
  </div>
  <input type="hidden" name="type" value="link">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-text" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="text-content">Text</label>
    <input type="text" class="form-control" id="text-content" name="data" placeholder="Enter text" required="">
  </div>
  <input type="hidden" name="type" value="text">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-email" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="email-to">To Email</label>
    <input type="email" class="form-control" id="email-to" name="to_email" placeholder="Enter recipient email address" required="">
  </div>
  <div class="form-group">
    <label for="email-subject">Subject</label>
    <input type="text" class="form-control" id="email-subject" name="subject" placeholder="Enter email subject" required="">
  </div>
  <div class="form-group">
    <label for="email-body">Body Message</label>
    <textarea class="form-control" id="email-body" name="body_message" rows="3" placeholder="Enter email body message" required=""></textarea>
  </div>
  <input type="hidden" name="type" value="email">
  <!-- Include your generate button here -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-location" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="location-address">Address</label>
    <input type="text" class="form-control" id="location-address" name="address" placeholder="Enter address" required="">
  </div>
  <div class="form-row">
    <div class="form-group col-md-6">
      <label for="location-lat">Latitude</label>
      <input type="text" class="form-control" id="location-lat" name="latitude" placeholder="Latitude" readonly="">
    </div>
    <div class="form-group col-md-6">
      <label for="location-lng">Longitude</label>
      <input type="text" class="form-control" id="location-lng" name="longitude" placeholder="Longitude" readonly="">
    </div>
  </div>
  <button type="button" class="btn btn-primary" id="get-coordinates">Get Coordinates</button>
  <hr>
  <input type="hidden" name="type" value="location">
  <!-- Include your generate button here -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-phone" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="phone-number">Phone Number</label>
    <input type="tel" class="form-control" id="phone-number" name="data" placeholder="Enter phone number" required="">
  </div>
  <input type="hidden" name="type" value="phone">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-sms" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="sms-number">Phone Number</label>
    <input type="tel" class="form-control" id="sms-number" name="phone" placeholder="Enter phone number" required="">
  </div>
  <div class="form-group">
    <label for="sms-message">Message</label>
    <input type="text" class="form-control" id="sms-message" name="message" placeholder="Enter SMS message" required="">
  </div>
  <input type="hidden" name="type" value="sms">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-whatsapp" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="whatsapp-number">Phone Number</label>
    <input type="tel" class="form-control" id="whatsapp-number" name="phone" placeholder="Enter phone number" required="">
  </div>
  <div class="form-group">
    <label for="whatsapp-message">Message</label>
    <textarea class="form-control" id="whatsapp-message" name="message" rows="3" placeholder="Enter message (optional)"></textarea>
  </div>
  <input type="hidden" name="type" value="whatsapp">
  <!-- Include your generate button here -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-skype" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="skype-id">Skype ID</label>
    <input type="text" class="form-control" id="skype-id" name="data" placeholder="Enter Skype ID" required="">
  </div>
  <input type="hidden" name="type" value="skype">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-zoom" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="zoom-meeting-id">Meeting ID</label>
    <input type="text" class="form-control" id="zoom-meeting-id" name="meeting_id" placeholder="Enter Zoom Meeting ID" required="">
  </div>
  <div class="form-group">
    <label for="zoom-password">Password</label>
    <input type="password" class="form-control" id="zoom-password" name="password" placeholder="Enter Zoom Meeting Password" required="">
  </div>
  <input type="hidden" name="type" value="zoom">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-wifi" action="generate_qr.php" method="post">
  <div class="form-row">
    <div class="col-md-8">
      <div class="form-group">
        <label for="wifi-ssid">SSID</label>
        <input type="text" class="form-control" id="wifi-ssid" name="ssid" placeholder="Enter WiFi SSID" required="">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="wifi-hidden" class="d-block">&nbsp;</label>
        <div class="form-check form-check-inline">
          <input class="form-check-input" type="checkbox" id="wifi-hidden" name="hidden_network">
          <label class="form-check-label" for="wifi-hidden"> Hidden Network </label>
        </div>
      </div>
    </div>
  </div>
  <div class="form-group">
    <label for="wifi-password">Password</label>
    <input type="password" class="form-control" id="wifi-password" name="password" placeholder="Enter WiFi password" required="">
  </div>
  <div class="form-group">
    <label for="wifi-encryption">Encryption</label>
    <select class="form-control" id="wifi-encryption" name="encryption" required="">
      <option value="">Please Select</option>
      <option value="WEP">WEP</option>
      <option value="WPA">WPA</option>
      <option value="WPA2">WPA2</option>
      <option value="WPA3">WPA3</option>
      <!-- Add more encryption types as needed -->
    </select>
  </div>
  <input type="hidden" name="type" value="wifi">
  <!-- Include your generate button here -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-vcard" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="vcard-name">Name</label>
    <input type="text" class="form-control" id="vcard-name" name="name" placeholder="Enter name" required="">
  </div>
  <div class="form-group">
    <label for="vcard-email">Email</label>
    <input type="email" class="form-control" id="vcard-email" name="email" placeholder="Enter email" required="">
  </div>
  <div class="form-group">
    <label for="vcard-phone">Phone</label>
    <input type="tel" class="form-control" id="vcard-phone" name="phone" placeholder="Enter phone number">
  </div>
  <div class="form-group">
    <label for="vcard-organization">Organization</label>
    <input type="text" class="form-control" id="vcard-organization" name="organization" placeholder="Enter organization">
  </div>
  <input type="hidden" name="type" value="vcard">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-paypal" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="paypal-email">PayPal Email</label>
    <input type="email" class="form-control" id="paypal-email" name="paypal_email" placeholder="Enter PayPal Email" required="">
  </div>
  <div class="form-group">
    <label for="paypal-amount">Amount</label>
    <input type="number" class="form-control" id="paypal-amount" name="amount" placeholder="Enter amount" required="">
  </div>
  <div class="form-group">
    <label for="paypal-currency">Currency</label>
    <select class="form-control" id="paypal-currency" name="currency" required="">
      <option value="USD">USD - United States Dollar</option>
      <option value="AUD">AUD - Australian Dollar</option>
      <option value="BRL">BRL - Brazilian Real</option>
      <option value="CAD">CAD - Canadian Dollar</option>
      <option value="CNY">CNY - Chinese Yuan</option>
      <option value="CZK">CZK - Czech Koruna</option>
      <option value="DKK">DKK - Danish Krone</option>
      <option value="EUR">EUR - Euro</option>
      <option value="HKD">HKD - Hong Kong Dollar</option>
      <option value="HUF">HUF - Hungarian Forint</option>
      <option value="INR">INR - Indian Rupee</option>
      <option value="ILS">ILS - Israeli New Shekel</option>
      <option value="JPY">JPY - Japanese Yen</option>
      <option value="MYR">MYR - Malaysian Ringgit</option>
      <option value="MXN">MXN - Mexican Peso</option>
      <option value="TWD">TWD - New Taiwan Dollar</option>
      <option value="NZD">NZD - New Zealand Dollar</option>
      <option value="NOK">NOK - Norwegian Krone</option>
      <option value="PHP">PHP - Philippine Peso</option>
      <option value="PLN">PLN - Polish Zloty</option>
      <option value="GBP">GBP - Pound Sterling</option>
      <option value="RUB">RUB - Russian Ruble</option>
      <option value="SGD">SGD - Singapore Dollar</option>
      <option value="SEK">SEK - Swedish Krona</option>
      <option value="CHF">CHF - Swiss Franc</option>
      <option value="THB">THB - Thai Baht</option>
      <!-- Add more currencies as needed -->
    </select>
  </div>
  <div class="form-group">
    <label for="paypal-description">Description (Optional)</label>
    <input type="text" class="form-control" id="paypal-description" name="description" placeholder="Enter payment description">
  </div>
  <input type="hidden" name="type" value="paypal">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-upi" action="generate_qr.php" method="POST">
  <div class="form-group">
    <label for="upi_name">Name:</label>
    <input type="text" class="form-control" id="upi_name" name="upi_name" required="">
  </div>
  <div class="form-group">
    <label for="upi_id">UPI ID / VPA:</label>
    <input type="text" class="form-control" id="upi_id" name="upi_id" required="">
  </div>
  <div class="form-group">
    <label for="upi_payee_name">Payee Name:</label>
    <input type="text" class="form-control" id="upi_payee_name" name="upi_payee_name" required="">
  </div>
  <div class="form-group">
    <label for="upi_currency">Currency:</label>
    <select class="form-control" id="upi_currency" name="upi_currency">
      <option value="INR" selected="">Indian Rupees</option>
      <!-- Add more currency options if needed -->
    </select>
  </div>
  <div class="form-group">
    <label for="upi_amount">Amount:</label>
    <input type="text" class="form-control" id="upi_amount" name="upi_amount" required="">
  </div>
  <div class="form-group">
    <label for="upi_transaction_remark">Transaction Remark:</label>
    <input type="text" class="form-control" id="upi_transaction_remark" name="upi_transaction_remark">
  </div>
  <input type="hidden" name="type" value="upi">
  <!-- Include your generate button here using PHP -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-youtube" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="youtube-type">Choose Type</label>
    <select class="form-control" id="youtube-type" name="youtube_type">
      <option value="subscription">Generate Subscription URL</option>
      <option value="channel">Channel URL</option>
      <option value="video">Video URL</option>
    </select>
  </div>
  <div class="form-group">
    <label id="youtube-url-label" for="youtube-url">YouTube Subscription URL</label>
    <input type="url" class="form-control" id="youtube-url" name="data" placeholder="Enter YouTube URL" required="">
  </div>
  <input type="hidden" name="type" value="youtube">
  <!-- Include your generate button here -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-bitcoin" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="bitcoin-crypto">Cryptocurrency</label>
    <select class="form-control" id="bitcoin-crypto" name="bitcoin_crypto" required="">
      <option value="BTC">Bitcoin (BTC)</option>
      <option value="BCH">Bitcoin Cash (BCH)</option>
      <option value="ETH">Ether (ETH)</option>
      <option value="LTC">Litecoin (LTC)</option>
      <option value="DASH">Dash (DASH)</option>
      <!-- Add more cryptocurrencies as needed -->
    </select>
  </div>
  <div class="form-group">
    <label for="bitcoin-amount">Amount</label>
    <input type="number" class="form-control" id="bitcoin-amount" name="bitcoin_amount" placeholder="Enter amount" required="">
  </div>
  <div class="form-group">
    <label for="bitcoin-receiver">Receiver</label>
    <input type="text" class="form-control" id="bitcoin-receiver" name="bitcoin_receiver" placeholder="Enter receiver's name or ID" required="">
  </div>
  <div class="form-group">
    <label for="bitcoin-address">Address</label>
    <input type="text" class="form-control" id="bitcoin-address" name="bitcoin_address" placeholder="Enter cryptocurrency address" required="">
  </div>
  <div class="form-group">
    <label for="bitcoin-message">Message (Optional)</label>
    <textarea class="form-control" id="bitcoin-message" name="bitcoin_message" rows="3" placeholder="Enter optional message"></textarea>
  </div>
  <input type="hidden" name="type" value="bitcoin">
  <!-- Include your generate button here -->
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

POST generate_qr.php

<form id="qr-form-event" action="generate_qr.php" method="post">
  <div class="form-group">
    <label for="event-title">Event Title</label>
    <input type="text" class="form-control" id="event-title" name="event_title" placeholder="Enter Event Title" required="">
  </div>
  <div class="form-group">
    <label for="event-location">Location</label>
    <input type="text" class="form-control" id="event-location" name="event_location" placeholder="Enter Location" required="">
  </div>
  <div class="form-group">
    <label for="event-start">Start Time</label>
    <input type="datetime-local" class="form-control" id="event-start" name="event_start" required="">
  </div>
  <div class="form-group">
    <label for="event-end">End Time</label>
    <input type="datetime-local" class="form-control" id="event-end" name="event_end" required="">
  </div>
  <div class="form-group">
    <label for="event-reminder">Reminder Before Event</label>
    <input type="text" class="form-control" id="event-reminder" name="event_reminder" placeholder="Enter reminder time before event (e.g., 10 minutes)">
  </div>
  <div class="form-group">
    <label for="event-link">Link</label>
    <input type="url" class="form-control" id="event-link" name="event_link" placeholder="http://">
  </div>
  <div class="form-group">
    <label for="event-notes">Notes</label>
    <textarea class="form-control" id="event-notes" name="event_notes" rows="3" placeholder="Enter notes"></textarea>
  </div>
  <input type="hidden" name="type" value="event">
  <div class="row">
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-color">Color</label>
        <input type="color" class="form-control" id="qr-color" name="color" value="#000000">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-icqrb">Background Color</label>
        <input type="color" class="form-control" id="qr-icqrb" name="icqrb" value="#FFFFFF">
      </div>
    </div>
    <div class="col-md-4">
      <div class="form-group">
        <label for="qr-size">Size</label>
        <select class="form-control" id="qr-size" name="size">
          <option value="200x200">200x200</option>
          <option value="500x500">500x500</option>
          <option value="999x999">1000x1000</option>
        </select>
      </div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary btn-block btn-3d">
    <span class="material-icons align-middle">qr_code_scanner</span> Generate QR Code </button>
</form>

<form>
  <div class="mb-3">
    <input type="text" class="form-control" placeholder="Your Name" required="">
  </div>
  <div class="mb-3">
    <input type="phone" class="form-control" placeholder="Your Contact No." required="">
  </div>
  <div class="mb-3">
    <input type="email" class="form-control" placeholder="Your Email" required="">
  </div>
  <div class="mb-3">
    <textarea class="form-control" rows="3" placeholder="Your Message" required=""></textarea>
  </div>
  <button type="submit" class="btn btn-primary btn-block">Send Message</button>
</form>

POST //translate.googleapis.com/translate_voting?client=te

<form id="goog-gt-votingForm" action="//translate.googleapis.com/translate_voting?client=te" method="post" target="votingFrame" class="VIpgJd-yAWNEb-hvhgNd-aXYTce"><input type="text" name="sl" id="goog-gt-votingInputSrcLang"><input type="text"
    name="tl" id="goog-gt-votingInputTrgLang"><input type="text" name="query" id="goog-gt-votingInputSrcText"><input type="text" name="gtrans" id="goog-gt-votingInputTrgText"><input type="text" name="vote" id="goog-gt-votingInputVote"></form>

Text Content

Ultimate QR Code Generator
 * Home
 * Generate QR
 * FAQ
 * Contact us
 * English▼
   
   Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian
   Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified)
   Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto
   Estonian Filipino Finnish French Frisian Galician Georgian German Greek
   Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic
   Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean
   Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish
   Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar
   (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian
   Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak
   Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai
   Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu
   
   Powered by Translate


GENERATE QR CODES EASILY

Start creating QR codes for text, email, location, and more with our easy-to-use
QR code generator.

Get Started


QR CODE GENERATOR

 * link Website
 * text_format Text
 * email Email
 * location_on Location
 * phone Phone
 * chat SMS
 *   WhatsApp
 * phone_in_talk Skype
 *   Zoom
 * wifi WiFi
 *   YouTube
 * person vCard
 *   PayPal
 *   Bitcoin
 *   UPI Payment
 * event Event
   

Website
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Text
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
To Email
Subject
Body Message
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Address
Latitude
Longitude
Get Coordinates

--------------------------------------------------------------------------------

Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Phone Number
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Phone Number
Message
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Phone Number
Message
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Skype ID
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Meeting ID
Password
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
SSID
 
Hidden Network
Password
Encryption Please Select WEP WPA WPA2 WPA3
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Name
Email
Phone
Organization
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
PayPal Email
Amount
Currency USD - United States Dollar AUD - Australian Dollar BRL - Brazilian Real
CAD - Canadian Dollar CNY - Chinese Yuan CZK - Czech Koruna DKK - Danish Krone
EUR - Euro HKD - Hong Kong Dollar HUF - Hungarian Forint INR - Indian Rupee ILS
- Israeli New Shekel JPY - Japanese Yen MYR - Malaysian Ringgit MXN - Mexican
Peso TWD - New Taiwan Dollar NZD - New Zealand Dollar NOK - Norwegian Krone PHP
- Philippine Peso PLN - Polish Zloty GBP - Pound Sterling RUB - Russian Ruble
SGD - Singapore Dollar SEK - Swedish Krona CHF - Swiss Franc THB - Thai Baht
Description (Optional)
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Name:
UPI ID / VPA:
Payee Name:
Currency: Indian Rupees
Amount:
Transaction Remark:
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Choose Type Generate Subscription URL Channel URL Video URL
YouTube Subscription URL
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Cryptocurrency Bitcoin (BTC) Bitcoin Cash (BCH) Ether (ETH) Litecoin (LTC) Dash
(DASH)
Amount
Receiver
Address
Message (Optional)
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code
Event Title
Location
Start Time
End Time
Reminder Before Event
Link
Notes
Color
Background Color
Size 200x200 500x500 1000x1000
qr_code_scanner Generate QR Code

QR CODE PREVIEW





BSWR.xyz - Comprehensive QR Code Generation for Every Need


BSWR.XYZ: EMPOWERING DIGITAL CONNECTIONS THROUGH QR CODE TECHNOLOGY

BSWR.xyz is a leading QR code generation platform, simplifying the way users
connect and interact with digital content. From events and payment methods to
video calls and social media, BSWR.xyz provides a diverse range of QR code
services, catering to modern-day digital and communication needs.


ABOUT BSWR.XYZ

Founded on the principle of making information accessible and shareable,
BSWR.xyz offers a user-friendly interface for creating QR codes that link
directly to popular services. Whether for business, personal, or event use, the
platform's versatile tools allow seamless integration into both digital and
print media.


QR CODE GENERATORS ON BSWR.XYZ

BSWR.xyz supports a wide variety of QR code types, each tailored to enhance
connectivity in distinct ways. Here’s a detailed look at the platform’s QR code
offerings and their practical applications.


EVENT QR CODES

BSWR.xyz simplifies event management with QR codes that contain all essential
event details. Guests can scan to access location, date, time, and RSVP
information, making it easier than ever to organize and promote gatherings.


SKYPE QR CODES

Connecting on Skype is now as easy as scanning a QR code. BSWR.xyz enables users
to generate Skype-specific QR codes, which open directly in the Skype app or web
interface, streamlining virtual meetings and calls.


UPI PAYMENT QR CODES

UPI payments are integral to today’s cashless economy. BSWR.xyz’s UPI QR code
generator allows users to make secure payments with a simple scan, facilitating
business transactions, donations, and peer-to-peer payments.


WHATSAPP QR CODES

Instantly connect on WhatsApp by scanning a QR code generated by BSWR.xyz. Ideal
for businesses looking to offer customer support or users wanting quick access
to contacts, WhatsApp QR codes streamline mobile messaging.


SMS QR CODES

BSWR.xyz’s SMS QR codes make it easy to initiate text messages with predefined
content. This feature is ideal for marketing campaigns or customer feedback,
where users can scan and send messages without manual input.


PHONE CALL QR CODES

Dialing numbers is now as easy as scanning a QR code. With BSWR.xyz, users can
create phone call QR codes that allow instant connection to customer support,
helplines, or personal contacts.


LOCATION QR CODES

Location-based QR codes on BSWR.xyz enable users to embed maps and directions
for specific places. Whether for businesses, event venues, or tourist spots,
these codes simplify navigation by directing users to Google Maps or other GPS
services.


BITCOIN PAYMENT QR CODES

BSWR.xyz recognizes the growing use of cryptocurrency with Bitcoin QR codes.
These codes allow users to make Bitcoin payments easily, ensuring seamless and
secure transactions in the digital economy.


PAYPAL QR CODES

PayPal QR codes generated on BSWR.xyz enable users to send or request payments
with just a scan, making e-commerce and personal transactions easier and faster.


VCARD QR CODES

BSWR.xyz helps professionals share their contact information through vCard QR
codes. These codes contain comprehensive contact details, such as name, phone
number, email, and company, simplifying networking efforts.


EMAIL QR CODES

Generating an email QR code with BSWR.xyz allows users to initiate an email with
a pre-filled recipient and subject, useful for customer support, inquiries, and
feedback.


TEXT QR CODES

Text QR codes are versatile for sharing short messages, website URLs, or other
information. BSWR.xyz makes it easy to share custom text-based information
quickly and efficiently.


WEBSITE QR CODES

Website QR codes redirect users to specific web pages, making them ideal for
marketing campaigns and promotions. BSWR.xyz supports easy URL embedding for
direct web navigation.


YOUTUBE QR CODES

Promote YouTube videos with QR codes that lead users directly to content.
BSWR.xyz’s YouTube QR codes are useful for influencers, businesses, and
educational content creators seeking audience engagement.


WI-FI QR CODES

Connecting to Wi-Fi networks becomes hassle-free with BSWR.xyz’s Wi-Fi QR codes.
Users can scan to join a network without needing a password, perfect for cafes,
offices, and other public spaces.


ZOOM QR CODES

As virtual meetings become essential, BSWR.xyz offers Zoom QR codes that open
the Zoom app with meeting details preloaded, making joining calls seamless for
participants.


HOW TO USE BSWR.XYZ’S QR CODE GENERATOR

BSWR.xyz offers a simple, user-friendly process for creating QR codes. Here’s
how to generate a QR code for any service:

 * Select the desired QR code type from the BSWR.xyz homepage.
 * Enter the necessary information, such as URLs, contact details, or payment
   details.
 * Customize the QR code with colors, frames, and logos to match your branding
   or preferences.
 * Download the QR code in your preferred format (e.g., PNG, SVG) for immediate
   use.


APPLICATIONS OF QR CODES IN VARIOUS INDUSTRIES

BSWR.xyz’s QR codes serve a broad spectrum of industries. Here’s a look at how
different sectors leverage QR technology for improved efficiency and customer
engagement:

 * Retail and E-commerce: UPI and PayPal QR codes for secure payments.
 * Marketing: Website and YouTube QR codes for promotional content.
 * Events: Location and event QR codes for seamless access to event information.
 * Hospitality: Wi-Fi QR codes for guest internet access without hassle.


CONCLUSION

BSWR.xyz stands as a versatile, reliable QR code generator that caters to a
diverse range of needs. Whether for business, education, or personal use, the
platform offers a seamless way to create, customize, and share QR codes,
enhancing connectivity and accessibility in our digital world.


TEXT

Generate QR codes for text messages.


EMAIL

Create QR codes for email addresses.


LOCATION

Generate QR codes for geographical locations.


PHONE

Create QR codes for phone numbers.


SMS

Generate QR codes for text messages.


WHATSAPP

Create QR codes for WhatsApp messages.


VIEW ALL FEATURES


FREQUENTLY ASKED QUESTIONS


WHAT IS A QR CODE?

A QR code (Quick Response Code) is a type of matrix barcode (or two-dimensional
barcode) first designed in 1994 for the automotive industry in Japan. It has
since become popular due to its fast readability and large storage capacity
compared to standard barcodes.


HOW DO I SCAN A QR CODE?

To scan a QR code, you need a QR code reader app installed on your smartphone.
Open the app, point your phone's camera at the QR code, and the app will
automatically recognize and process the code.


ARE QR CODES SECURE?

QR codes themselves are not inherently secure or insecure. The security of the
content accessed via a QR code depends on the source and the precautions taken
by the user.


CONTACT US

Feel Free to Get in Touch


Send Message

CONTACT SUPPORT

contact@bswr.xyz

© 2024 Bswr. All Rights Reserved.

 * Privacy Policy
 * Terms and Conditions
 * About Us

 * 
 * 
 * 
 * 

Original text

Rate this translation
Your feedback will be used to help improve Google Translate