new laptop setup
This commit is contained in:
Executable
+12
@@ -0,0 +1,12 @@
|
||||
.header {
|
||||
background: #034f84;
|
||||
margin-bottom: 0.3rem;
|
||||
}
|
||||
|
||||
.header p {
|
||||
color: white;
|
||||
display: inline-block;
|
||||
margin: 0.5rem;
|
||||
margin-right: 0.4rem;
|
||||
margin-left: 0.4rem;
|
||||
}
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
<div class="header">
|
||||
<p>complete tasks: </p><p id="completeNum"></p>
|
||||
<p>pending tasks: </p><p id="pendingNum"></p>
|
||||
</div>
|
||||
Executable
+51
@@ -0,0 +1,51 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charSet="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,
|
||||
initial-scale=1.0" />
|
||||
<meta name="description" content="This is a simple to do app" />
|
||||
<meta httpEquiv="X-UA-Compatiable" content="ie=edge" />
|
||||
<title>Login</title>
|
||||
</head>
|
||||
|
||||
<style>
|
||||
{{BASE_CSS}}
|
||||
{{CSS}}
|
||||
|
||||
.loginButtonStyle {
|
||||
display: inline-block;
|
||||
background: #f7786b;
|
||||
border: none;
|
||||
padding: 0.5rem;
|
||||
padding-left: 2rem;
|
||||
padding-right: 2rem;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.loginButtonStyle:hover {
|
||||
background: #f7686b;
|
||||
color: black;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<div class="mainContainer">
|
||||
<h2 class="ContainerTitle" style="text-align:center;">Login</h2>
|
||||
<p id="loginMessage" class="FeedbackMessage" style="text-align:center;"></p>
|
||||
<form style="text-align:center;" action="submit">
|
||||
<input type="text" value="" placeholder="Username" class="formInputContainer"
|
||||
id="defaultLoginFormUsername"><br>
|
||||
<p></p>
|
||||
<input type="password" value="" placeholder="Password" class="formInputContainer"
|
||||
id="defaultLoginFormPassword"><br><br>
|
||||
<input type="button" value="Submit" class="loginButtonStyle" id="loginButton" style="text-align:center;">
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
<script>
|
||||
{{JAVASCRIPT}}
|
||||
</script>
|
||||
|
||||
</html>
|
||||
Executable
+26
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width,
|
||||
initial-scale=1.0"
|
||||
/>
|
||||
<meta httpEquiv="X-UA-Compatible" content="ie=edge" />
|
||||
<meta name="description" content="This is a simple to do app" />
|
||||
<title>ToDo App</title>
|
||||
</head>
|
||||
<style>
|
||||
BASE_CSS
|
||||
CSS
|
||||
HEADER_CSS
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<div class="mainContainer"></div>
|
||||
</body>
|
||||
<script>
|
||||
JAVASCRIPT;
|
||||
</script>
|
||||
</html>
|
||||
Reference in New Issue
Block a user