T.C. Kimlik No Doğrulama (PHP) (2 Viewers)

Joined
Nov 8, 2018
Credits
4
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                        
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
 

scario1

Never die.
Joined
May 10, 2019
Credits
0
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
Bklm
 
Joined
Aug 27, 2019
Credits
25
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
bajalım
 
Joined
Nov 8, 2018
Credits
4
Rating - 0%
doğrulamayı !== 11 böylemi belirliyor çeeçeeçeeçeeçee
Daha sağlam olmalı.

Konuya ek olarak yazı yazmalıydım :D Bunu kod okunabilirliği açısından paylaştım. Bu kod üzerinde anlatılmak istenen şey TC kimlik mantığı. TC Kimlik numarasının ilk 10 rakamının toplamının son rakamı ile, kimlik numarasının en son rakamına eşit işe doğrulaması :D Kişisel projelerinizde kullanmanız için değil :) Merak eden arkadaşlar kişisel projeleri için buna göz atabilir https://github.com/epigra/tckimlik
 

Mectruy 

Not Gonna Get Us
Joined
Dec 1, 2015
Credits
201,695
Rating - 94.7%
Konuya ek olarak yazı yazmalıydım :D Bunu kod okunabilirliği açısından paylaştım. Bu kod üzerinde anlatılmak istenen şey TC kimlik mantığı. TC Kimlik numarasının ilk 10 rakamının toplamının son rakamı ile, kimlik numarasının en son rakamına eşit işe doğrulaması :D Kişisel projelerinizde kullanmanız için değil :) Merak eden arkadaşlar kişisel projeleri için buna göz atabilir

Şimdi oldu işte
 
Joined
Sep 9, 2018
Credits
118
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
 
Joined
Sep 28, 2019
Credits
1
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
bakam
 
Joined
Mar 16, 2019
Credits
25
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
Eywallah aga bakalım
 
Joined
Nov 8, 2019
Credits
0
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
Bklm
 
Joined
Dec 9, 2018
Credits
155
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
bakalım
 
Joined
Nov 28, 2019
Credits
0
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
22
 

Adamındibi

OROSPU EVLADIYIM
Joined
Aug 29, 2019
Credits
0
Rating - 0%
View hidden content is available for registered users!
Code:
<!doctype html>
<html lang="tr">
  <head>
    <title>TC Kimlik Doğrulama</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <body>
      <div class="container">
            <div class="row">
                <div class="col-md-12">
                <?php
                    if (isset($_POST['TC_Kimlik'])) {
                        $tc_no = $_POST['TC_Kimlik'];
                       
                        if (strlen($tc_no) !== 11 || !is_numeric($tc_no)){
                            echo '<div class="alert alert-warning text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası yanlış veya eksiktir. Lütfen tekrar giriniz.</div>';
                            echo '<button onclick="window.history.back()">Geri dön</button>';
                            exit;
                        }

                        $topla = 0;
                        for ($i=0; $i <= 9 ; $i++) {
                            $topla += $tc_no[$i];
                        }

                        if (substr($topla, -1) == substr($tc_no, -1)){
                            echo '<div class="alert alert-success text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğrudur.</div>';
                        }else {
                            echo '<div class="alert alert-danger text-center">Girmiş olduğunuz <b>('. $tc_no . ')</b> TC Kimlik numarası doğru değildir. Lütfen ilgili birime başvurunuz.</div>';
                        }

                    }
                ?>
                <hr>
                    <form action="index.php" method="post">
                        <div class="form-group">
                          <label>TC Kimlik Doğrulama</label>
                          <input type="text" name="TC_Kimlik" class="form-control" placeholder="TC Kimlik Numaranızı buraya yazınız." aria-describedby="helpId">
                        </div>
                        <input class="btn btn-dark" type="submit" value="Doğrula">
                    </form>
                <hr>
                </div>
            </div>
      </div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>
 

Users who are viewing this thread

Top