Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

files_changed #54

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion html_login_app/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ label {

input {
width: calc(100%-20px);
padding: 10px
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 4px;
Expand Down
2 changes: 1 addition & 1 deletion simple_authn/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const users = [
app.use(bodyParser.json());

app.get('/', (req, res) => {
res.status(200).json({message: ''});
res.status(200).json({message: 'hello world'});
});

// Endpoint for user authentication
Expand Down
4 changes: 2 additions & 2 deletions simple_node_login/public/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<div class="login-container">
<h2>Login</h2>
<form action="/login" method="POST">
<input type="text" name="username" placeholder="Usrnme" required>
<input type="password" name="password" placeholder="Psswrd" required>
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Login</button>
<form>
</div>
Expand Down
2 changes: 1 addition & 1 deletion simple_node_todo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ <h1></h1>
});
});
});
<script>
</script>
</body>
</html>