This file contains 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
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<h2 class="text-center">Create highlights that you can use as revision later</h2> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4 offset-md-1"> | |
<div class="card"> | |
<img class="card-img-top" src="demomain.PNG" alt="Card image cap"> |
This file contains 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
function randomString(length, chars) { | |
var result = ''; | |
for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)]; | |
return result; | |
} | |
var rString = randomString(32, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'); | |
console.log(rString); | |
$value = 'hwefwkZ4tHCfQ425HNtp5ffl7FRVOMND'; | |
$output = ''; |