Created
December 23, 2016 07:53
-
-
Save isdaviddong/bd0792ab0eec264269c0d59927a73dfd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <meta charset="utf-8" /> | |
| <script src="Scripts/jquery-1.9.1.min.js"></script> | |
| <link href="Content/bootstrap.min.css" rel="stylesheet" /> | |
| <script src="Scripts/isRockFx.js"></script> | |
| </head> | |
| <body> | |
| <div class="row" style="margin:10px"> | |
| <div class="col-md-12"> | |
| <div class="form-group"> | |
| 身高: | |
| <input class="form-control" placeholder="請輸入身高" /> | |
| 體重: | |
| <input class="form-control" placeholder="請輸入體重" /> | |
| <br /> | |
| <button class="btn btn-primary" id="ButtonCal">計算</button> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
hmudzuz-cmd
commented
Mar 2, 2026
<script src="https://gist.github.com/isdaviddong/23cc140c1780828b44f79397f737b95e.js"></script>
<style>
body { background-color: #121212; color: #ff9800; font-family: sans-serif; text-align: center; padding: 20px; }
.logo { font-size: 50px; margin-bottom: 10px; }
input { width: 90%; padding: 15px; margin: 10px 0; border-radius: 5px; border: 1px solid #333; background: #1a1a1a; color: white; }
button { width: 90%; padding: 15px; margin: 10px 0; border-radius: 5px; border: none; background-color: #ff9800; color: black; font-weight: bold; cursor: pointer; }
</style>
⚖️
NITISH NARAYAN TECHNOLOGIES
<input type="number" placeholder="रकम भरें (₹)">
<input type="text" placeholder="ग्राहक का मोबाइल नंबर">
<button onclick="scan('Fingerprint')">फिंगरप्रिंट स्कैन करें</button>
<button onclick="scan('Iris')">आई (Iris) स्कैन करें</button>
<script>
function scan(type) {
alert(type + " सेंसर सक्रिय है...");
}
</script>
![Uploading 1000040194.jpg…]()
<style>
body {
background-color: #0f0f0f;
color: #ff9800;
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
margin: 0;
}
.icon { font-size: 60px; margin: 20px 0; border: 2px solid #ff9800; border-radius: 50%; padding: 15px; display: inline-block;}
h2 { font-size: 18px; letter-spacing: 1px; margin-bottom: 30px; }
input {
width: 85%; padding: 18px; margin: 10px 0; border-radius: 8px;
border: 1px solid #333; background: #1a1a1a; color: white; font-size: 16px;
}
button {
width: 90%; padding: 18px; margin: 15px 0; border-radius: 8px;
border: 1px solid #ff9800; background-color: #ff9800; color: black;
font-weight: bold; font-size: 16px; cursor: pointer;
}
button.iris-btn { background-color: transparent; color: #ff9800; }
</style>
<div class="icon">⚖️</div>
<h2>NITISH NARAYAN TECHNOLOGIES</h2>
<input type="number" placeholder="रकम भरें (₹)">
<input type="number" placeholder="ग्राहक का मोबाइल नंबर">
<button onclick="alert('फिंगरप्रिंट सेंसर सक्रिय...')">फिंगरप्रिंट स्कैन करें</button>
<button class="iris-btn" onclick="alert('आई (Iris) सेंसर सक्रिय...')">आई (Iris) स्कैन करें</button>
<style>
body { background-color: #0f0f0f; color: #ff9800; font-family: Arial, sans-serif; text-align: center; padding: 20px; margin: 0; }
.error-box { background-color: #4a0000; color: #ffcccc; padding: 15px; border-radius: 5px; margin-bottom: 20px; display: none; border: 1px solid #ff4444; }
.icon { font-size: 60px; margin: 20px 0; border: 2px solid #ff9800; border-radius: 50%; padding: 15px; display: inline-block;}
h2 { font-size: 18px; letter-spacing: 1px; margin-bottom: 30px; }
input { width: 85%; padding: 18px; margin: 10px 0; border-radius: 8px; border: 1px solid #333; background: #1a1a1a; color: white; font-size: 16px; }
button { width: 90%; padding: 18px; margin: 15px 0; border-radius: 8px; border: 1px solid #ff9800; background-color: #ff9800; color: black; font-weight: bold; font-size: 16px; cursor: pointer; }
button.iris-btn { background-color: transparent; color: #ff9800; }
</style>
<div id="errorBox" class="error-box">कृपया रकम और मोबाइल नंबर सही से भरें!</div>
<div class="icon">⚖️</div>
<h2>NITISH NARAYAN TECHNOLOGIES</h2>
<input type="number" id="amount" placeholder="रकम भरें (₹)">
<input type="number" id="mobile" placeholder="ग्राहक का मोबाइल नंबर">
<button onclick="checkAndScan('Fingerprint')">फिंगरप्रिंट स्कैन करें</button>
<button class="iris-btn" onclick="checkAndScan('Iris')">आई (Iris) स्कैन करें</button>
<script>
function checkAndScan(type) {
let amount = document.getElementById("amount").value;
let mobile = document.getElementById("mobile").value;
let errorBox = document.getElementById("errorBox");
if (amount === "" || mobile.length < 10) {
errorBox.style.display = "block"; // एरर दिखाएं
} else {
errorBox.style.display = "none"; // एरर छिपाएं
alert(type + " सेंसर सक्रिय है...");
}
}
</script>
<style> body { background-color: #0f0f0f; color: #ff9800; font-family: Arial, sans-serif; text-align: center; padding: 20px; margin: 0; } .error-box { background-color: #4a0000; color: #ffcccc; padding: 15px; border-radius: 5px; margin-bottom: 20px; display: none; border: 1px solid #ff4444; } .icon { font-size: 60px; margin: 20px 0; border: 2px solid #ff9800; border-radius: 50%; padding: 15px; display: inline-block;} h2 { font-size: 18px; letter-spacing: 1px; margin-bottom: 30px; } input { width: 85%; padding: 18px; margin: 10px 0; border-radius: 8px; border: 1px solid #333; background: #1a1a1a; color: white; font-size: 16px; } button { width: 90%; padding: 18px; margin: 15px 0; border-radius: 8px; border: 1px solid #ff9800; background-color: #ff9800; color: black; font-weight: bold; font-size: 16px; cursor: pointer; } button.iris-btn { background-color: transparent; color: #ff9800; } </style><div id="errorBox" class="error-box">कृपया रकम और मोबाइल नंबर सही से भरें!</div> <div class="icon">⚖️</div> <h2>NITISH NARAYAN TECHNOLOGIES</h2> <input type="number" id="amount" placeholder="रकम भरें (₹)"> <input type="number" id="mobile" placeholder="ग्राहक का मोबाइल नंबर"> <button onclick="checkAndScan('Fingerprint')">फिंगरप्रिंट स्कैन करें</button> <button class="iris-btn" onclick="checkAndScan('Iris')">आई (Iris) स्कैन करें</button> <script> function checkAndScan(type) { let amount = document.getElementById("amount").value; let mobile = document.getElementById("mobile").value; let errorBox = document.getElementById("errorBox"); if (amount === "" || mobile.length < 10) { errorBox.style.display = "block"; // एरर दिखाएं } else { errorBox.style.display = "none"; // एरर छिपाएं alert(type + " सेंसर सक्रिय है..."); } } </script>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment