mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
30 lines
770 B
HTML
30 lines
770 B
HTML
{{define "device-enrolled.html"}}<!DOCTYPE html>
|
|
<html lang="en" charset="utf-8">
|
|
<head>
|
|
<title>Device Successfully Enrolled</title>
|
|
{{template "header.html"}}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="inner">
|
|
<div class="header clearfix">
|
|
<div class="heading"></div>
|
|
</div>
|
|
<div class="content">
|
|
<div class="white box">
|
|
<div class="largestatus">
|
|
<div class="title-wrapper">
|
|
<span class="title">Device Successfully Enrolled</span>
|
|
<label class="status-time">
|
|
<span>
|
|
Device was successfully enrolled.
|
|
</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{end}}
|