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

style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf #1609

Closed
wants to merge 1 commit into from
Closed
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
88 changes: 51 additions & 37 deletions sidra_chain_integration/frontend/index.html
Original file line number Diff line number Diff line change
@@ -1,45 +1,59 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sidra Lending Platform</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#loan-application">Loan Application</a></li>
<li><a href="#investment-opportunities">Investment Opportunities</a></li>
<li><a href="#risk-assessment">Risk Assessment</a></li>
</ul>
</nav>
<nav>
<ul>
<li><a href="#loan-application">Loan Application</a></li>
<li>
<a href="#investment-opportunities">Investment Opportunities</a>
</li>
<li><a href="#risk-assessment">Risk Assessment</a></li>
</ul>
</nav>
</header>
<main>
<section id="loan-application">
<h2>Loan Application</h2>
<form>
<label for="credit-score">Credit Score:</label>
<input type="number" id="credit-score" name="credit-score"><br><br>
<label for="income">Income:</label>
<input type="number" id="income" name="income"><br><br>
<label for="employment-history">Employment History:</label>
<input type="text" id="employment-history" name="employment-history"><br><br>
<label for="loan-amount">Loan Amount:</label>
<input type="number" id="loan-amount" name="loan-amount"><br><br>
<button type="submit">Submit</button>
</form>
</section>
<section id="investment-opportunities">
<h2>Investment Opportunities</h2>
<p>Coming soon...</p>
</section>
<section id="risk-assessment">
<h2>Risk Assessment</h2>
<p>Coming soon...</p>
</section>
<section id="loan-application">
<h2>Loan Application</h2>
<form>
<label for="credit-score">Credit Score:</label>
<input
type="number"
id="credit-score"
name="credit-score"
/><br /><br />
<label for="income">Income:</label>
<input type="number" id="income" name="income" /><br /><br />
<label for="employment-history">Employment History:</label>
<input
type="text"
id="employment-history"
name="employment-history"
/><br /><br />
<label for="loan-amount">Loan Amount:</label>
<input
type="number"
id="loan-amount"
name="loan-amount"
/><br /><br />
<button type="submit">Submit</button>
</form>
</section>
<section id="investment-opportunities">
<h2>Investment Opportunities</h2>
<p>Coming soon...</p>
</section>
<section id="risk-assessment">
<h2>Risk Assessment</h2>
<p>Coming soon...</p>
</section>
</main>
<script src="script.js"></script>
</body>
</body>
</html>
Loading