Skip to content
Snippets Groups Projects
Commit 9315d230 authored by Bob Mottram's avatar Bob Mottram
Browse files

New user screen

parent bece8f22
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" content="30">
<style>
#headerpic {
width: 60%;
height: auto;
margin-right : auto;
margin-left : auto;
min-width : 220px;
}
#domainicon {
width: 20%;
height: auto;
margin-right : auto;
margin-left : auto;
min-width : 100px;
}
.header {
text-align: center;
padding: 32px;
}
#iconpic {
width: 20%;
height: auto;
margin-right : auto;
margin-left : auto;
min-width : 120px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 600px;
margin: auto;
text-align: center;
font-family: arial;
clear: both;
}
.card input[type=text] {
width: 90%;
clear: both;
text-align: center;
}
.appurl {
color: grey;
font-size: 100%;
}
.welcomeheader {
color: black;
font-size: 200%;
font-weight: bold;
}
.domaintext {
color: black;
font-size: 90%;
}
button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
color: black;
}
button:hover, a:hover {
opacity: 0.7;
}
.chip {
display: inline-block;
padding: 0 25px;
height: 50px;
font-size: 70%;
line-height: 50px;
border-radius: 25px;
background-color: #f1f1f1;
}
.chip img {
float: left;
margin: 0 10px 0 -25px;
height: 50px;
width: 50px;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="card">
<div class="header">
<img id="headerpic" class="img-responsive" src="images/logo.png"><br>
<img id="domainicon" class="img-responsive" src="images/admin_users.png">
<h2>Add a new user</h2>
<p class="domaintext">Please enter their username. This should be lower case only and with no spaces.</p>
<form action="adduser.php" method="post">
<p><input type="text" name="username"></p>
<br><br>
<input type="submit" name="submitcanceluser" value="Cancel">
<input type="submit" name="submitadduser" value="Add">
</form>
<br><br>
</div>
</div>
</body>
</html>
......@@ -98,7 +98,7 @@
</a>
</div>
<div class="chip">
<a href="newuser.html">
<a href="new_user.html">
<img src="images/admin_users.png" alt="Person" width="96" height="96">
+
</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment