80 lines
3.4 KiB
HTML
80 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Truy cập - EuroTile Worker</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="page-wrapper">
|
|
<!-- Header -->
|
|
<div class="header">
|
|
<a href="login.html" class="back-button">
|
|
<i class="fas fa-arrow-left"></i>
|
|
</a>
|
|
<h1 class="header-title">Đơn vị kinh doanh</h1>
|
|
<!--<div style="width: 32px;"></div>-->
|
|
<button class="back-button" onclick="openInfoModal()">
|
|
<i class="fas fa-info-circle"></i>
|
|
</button>
|
|
</div>
|
|
<div class="container">
|
|
<!-- Logo Section -->
|
|
<div class="text-center mt-4 mb-4">
|
|
<div style="display: inline-block; background: linear-gradient(135deg, #005B9A 0%, #38B6FF 100%); padding: 20px; border-radius: 20px;">
|
|
<h1 style="color: white; font-size: 32px; font-weight: 700; margin: 0;">DBIZ</h1>
|
|
<p style="color: white; font-size: 12px; margin: 0;">Worker App</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Welcome Message -->
|
|
<div class="text-center mb-4">
|
|
<p class="text-muted">Chọn đơn vị kinh doanh để tiếp tục</p>
|
|
</div>
|
|
|
|
<!-- Start Form -->
|
|
<form action="register.html" class="card" style="margin-top: 40px;">
|
|
<div class="form-group">
|
|
<label class="form-label" for="phone">Đơn vị kinh doanh</label>
|
|
<div class="form-input-icon">
|
|
<i class="fas fa-briefcase icon"></i>
|
|
<select id="role" class="form-input form-select" required onchange="toggleVerification()">
|
|
<option value="">Chọn đơn vị kinh doanh</option>
|
|
<option value="dealer">VIKD</option>
|
|
<option value="worker">HSKD</option>
|
|
<option value="worker">LPKD</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-block">
|
|
Tiếp tục
|
|
</button>
|
|
</form>
|
|
|
|
|
|
<!-- Brand Selection -->
|
|
<!-- <div class="mt-4">
|
|
<p class="text-center text-small text-muted mb-3">Hoặc chọn thương hiệu</p>
|
|
<div class="grid grid-2">
|
|
<button class="btn btn-secondary">
|
|
<i class="fas fa-building"></i> EuroTile
|
|
</button>
|
|
<button class="btn btn-secondary">
|
|
<i class="fas fa-gem"></i> Vasta Stone
|
|
</button>
|
|
</div>
|
|
</div>-->
|
|
|
|
<!-- Support -->
|
|
<!--<div class="text-center mt-4" style="margin-top: 320px;">
|
|
<a href="#" class="text-small text-primary" style="text-decoration: none;">
|
|
<i class="fas fa-info-circle"></i> Hỗ trợ khách hàng
|
|
</a>
|
|
</div>-->
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |