Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshat111111 authored Aug 15, 2024
1 parent b8ab543 commit 7605613
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexTrade</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<h1>Welcome to NexTrade</h1>
<form id="addStockForm">
<input type="text" name="name" placeholder="Stock Name">
<input type="number" name="price" placeholder="Stock Price">
<button type="submit">Add Stock</button>
</form>

<form id="buyStockForm">
<input type="text" name="name" placeholder="Stock Name">
<button type="submit">Buy Stock</button>
</form>
</body>
</html>

0 comments on commit 7605613

Please sign in to comment.