Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">
  <div class="row align-items-end justify-content-center">
    <div class="col-md-9 form-group">
      <label for="parola" class="form-label m-0">Parola</label>
      <input type="password" id="parola" class="form-control">
      <i id="degistir" class="fa fa-eye text-white bg-primary"></i>
    </div>
    <div class="col-md-3 d-flex justify-content-center mt-2">
      <button class="btn btn-primary" onclick="sifreOlustur()">Şifre Oluştur</button>
    </div>
  </div>  
</div>
              
            
!

CSS

              
                /*değiştir ikon*/
.form-group{position:relative}
#degistir{position:absolute;bottom:0px;right:13px;top:24px;width:40px;display:flex;justify-content:center;align-items:center;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}
              
            
!

JS

              
                // Sayfa hazır olduğunda
$(document).ready(function () {
    // değiştir göz ikonuna tıklandığında
    $("#degistir").click(function () {
        // eğer type niteliği password ise
        if ($("#parola").attr("type") == "password") {
            // type niteliğini text olarak değiştir
            $("#parola").attr("type", "text");
        }
        // password değil text ise
        else {
            // type niteliğini password olarak değiştir
            $("#parola").attr("type", "password");
        }
    });
});
function sifreOlustur() {
    // onclick ile çağrılan fonskiyon
    var uzunluk = 12,
        // şifre uzunluğu
        karakterler = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789./_?()",
        // şifre içindeki karakterler
        sonDeger = "";
        // son değer değişkenini tanımla
    for (var i = 0, n = karakterler.length; i < uzunluk; ++i) {
        // karakter uzunluğu kadar döngüye sok
        sonDeger += karakterler.charAt(Math.floor(Math.random() * n));
        // sonDeger degiskeninde rastgele oluşturulan değerleri birliştir
    }
    $('#parola').val(sonDeger);
    // en sonunda input içine rastgele oluşturulmuş şifreyi yaz
}
              
            
!
999px

Console