This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from cedricouellet/develop
add copyright & github link
- Loading branch information
Showing
3 changed files
with
62 additions
and
22 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" | ||
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" /> | ||
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" | ||
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="css/common.css" /> | ||
<link rel="stylesheet" href="css/index.css" /> | ||
<script src="js/login.js" defer></script> | ||
<title>NoChat - Home</title> | ||
</head> | ||
</head> | ||
|
||
<body> | ||
<body> | ||
<div id="container"> | ||
<div id="header"> | ||
<h1>NoChat <i class="fas fa-comment-dots"></i></h1> | ||
</div> | ||
<div id="main"> | ||
<form id="login-form" action="chat.html"> | ||
<div class="form-control"> | ||
<label for="username-input">Display name</label> | ||
<input type="text" id="username-input" autocomplete="off" placeholder="Enter a display name..." | ||
required /> | ||
</div> | ||
<button type="submit" class="btn">Join</button> | ||
</form> | ||
<div id="header"> | ||
<h1>NoChat <i class="fas fa-comment-dots"></i></h1> | ||
</div> | ||
<div id="main"> | ||
<form id="login-form" action="chat.html"> | ||
<div class="form-control"> | ||
<label for="username-input">Display name</label> | ||
<input | ||
type="text" | ||
id="username-input" | ||
autocomplete="off" | ||
placeholder="Enter a display name..." | ||
required | ||
/> | ||
</div> | ||
<button type="submit" class="btn">Join</button> | ||
</form> | ||
</div> | ||
|
||
<div class="bottom"> | ||
<a class="git" href="https://github.com/cedricouellet/no-chat"> | ||
<i class="fab fa-github"></i> | ||
https://github.com/cedricouellet/no-chat | ||
</a> | ||
<div class="copyright"> | ||
Copyright © 2022 cedricao. All Rights Reserved | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> | ||
</body> | ||
</html> |