You've already forked microservices
mirror of
https://github.com/ebosas/microservices.git
synced 2025-06-30 22:33:51 +02:00
41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
![]() |
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Microservices</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="stylesheet" href="build/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="root" class="vh-100">
|
||
|
<div class="container position-relative h-75">
|
||
|
<div class="position-absolute top-50 start-0 w-100 translate-middle-y">
|
||
|
<div class="row">
|
||
|
<div class="col col-md-8 col-lg-6 mx-auto">
|
||
|
<form>
|
||
|
<div class="input-group">
|
||
|
<input type="text" class="form-control" placeholder="Enter message" aria-label="Enter message" aria-describedby="button-send" />
|
||
|
<button class="btn btn-success" type="submit" id="button-send">Send</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="notifications" class="position-absolute top-0 start-0 w-100">
|
||
|
<div class="row">
|
||
|
<div class="col col-md-8 col-lg-6 mx-auto mt-5">
|
||
|
<div class="alert alert-primary" role="alert">
|
||
|
<em>Sent</em>: A message sent to the back end.
|
||
|
</div>
|
||
|
|
||
|
<div class="alert alert-success" role="alert">
|
||
|
<em>Received</em>: A message received from the back end.
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|