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

css frameworks PR #294

Open
wants to merge 12 commits into
base: main
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
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# css-frameworks-ca
Replace this text with a description of your social media project.

- For this assignment we were tasked to create a social media site with a login page, feed page, and a profile page.

- Made with bootstrap and sass.

# Link to adobe xd design:

https://xd.adobe.com/view/a83d5141-447d-404c-89a1-a6108ffed711-fd6e/
409 changes: 409 additions & 0 deletions feed/index.html

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign in</title>
<link rel="stylesheet" href="/dist/css/index.css">

<script src="/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Brandlogo</a>


</div>
</div>
</nav>

<div class="container" id="form-title"><h1>Sign in</h1></div>

<div class="container" id="form-container">
<form action="/profile/index.html">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email" required>

</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password" minlength="8" required>
</div>

<button href="/src/pages/profile.html" type="submit" class="btn btn-primary mt-2" id="form-btn">Sign in</button>
</form>

</div>



</body>
</html>
Loading