some pill bages for design

This commit is contained in:
Thies Mueller 2021-01-09 23:10:52 +01:00
parent a149557272
commit cf3031774e

View File

@ -31,17 +31,17 @@ $showForm = true;
if(isset($_GET['send']) ) { if(isset($_GET['send']) ) {
if(!isset($_POST['username']) || empty($_POST['username'])) { if(!isset($_POST['username']) || empty($_POST['username'])) {
$error = "<b>Enter your Username</b>"; $error = '<span class="badge badge-pill badge-info"><b>Enter your Username</b></span>';
} else { } else {
$statement = $pdo->prepare("SELECT * FROM users WHERE username = :username"); $statement = $pdo->prepare("SELECT * FROM users WHERE username = :username");
$result = $statement->execute(array('username' => $_POST['username'])); $result = $statement->execute(array('username' => $_POST['username']));
$user = $statement->fetch(); $user = $statement->fetch();
if($user === false) { if($user === false) {
$error = "<b>no user found</b>"; $error = '<span class="badge badge-pill badge-warning"><b>no user found</b></span>';
} }
if($user['activated'] == "1"){ if($user['activated'] == "1"){
$error = "<b>user already activated!</b>"; $error = '<span class="badge badge-pill badge-warning"><b>user already activated!</b></span>';
} else { } else {
//check if theres a code already //check if theres a code already
$activationcode = random_string(); $activationcode = random_string();