22 lines
509 B
HTML
22 lines
509 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<h2>Welcome, {{ username }}!</h2>
|
|
<p>Your Recent Designs:</p>
|
|
<ul>
|
|
<li>400G_Transceiver_v1.gds</li>
|
|
<li>Ring_Modulator_Test.gds</li>
|
|
</ul>
|
|
|
|
<!-- The "+" button that links to your GUI -->
|
|
<form action="/canvas" method="GET">
|
|
<button type="submit" style="font-size: 20px; padding: 10px;">+ New Project</button>
|
|
</form>
|
|
|
|
<br>
|
|
<a href="/logout">Logout</a>
|
|
</body>
|
|
</html> |