File size: 2,194 Bytes
40843fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Analysis</title>
<link rel="stylesheet" href="{{ url_for('static', filename='app0styling.css') }}">
</head>
<body>
<!-- Header -->
<div class="header">
<h1>Fraud App Analysis</h1>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<div class="logo">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="Company Logo">
</div>
<div class="navbar-links">
<a href="/">Home</a>
<div class="dropdown">
<button class="dropbtn">Predict</button>
<div class="dropdown-content">
<a href="/predict/insurance">Insurance</a>
<a href="/predict/app">App</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Analysis</button>
<div class="dropdown-content">
<a href="/analysis/insurance">Insurance</a>
<a href="/analysis/app">App</a>
</div>
</div>
<a href="/dataset">Dataset</a>
</div>
</div>
<div class="input-container">
<form action="/analysis/app" method="POST">
<div class="input-group">
<label for="app-id">App ID:</label>
<input type="text" id="app-id" name="app-id" placeholder="Enter App ID">
</div>
<div class="input-group">
<label for="app-name">App Name:</label>
<input type="text" id="app-name" name="app-name" placeholder="Enter App Name">
</div>
<div class="button-group">
<button type="button" onclick="clearFormApp()" class="clear-button">Clear</button>
<button class="submit-button" type="submit">Submit</button>
</div>
</form>
</div>
<script src="{{ url_for('static', filename='vehicle_script.js') }}"></script>
</body>
</html>
|