-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patholdAdd.html
33 lines (27 loc) · 1.46 KB
/
oldAdd.html
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
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Add Contact</title>
<script type="text/javascript" src="js/code.js"></script>
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<!--Bootstrap link-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
</head>
<body>
<nav1>
<img src="images/logo.png" id="logo" alt="logo">
<div class="icon"> Contact Manager</div>
</nav1>
<div id="addContactDiv">
<input type="text" class="input_fields" id="newContactFirst" placeholder="First Name">
<input type="text" class="input_fields" id="newContactLast" placeholder="Last Name">
<input type="text" class="input_fields" id="newContactEmail" placeholder="Email">
<input type="text" class="input_fields" id="newContactPhone" placeholder="PhoneNumber">
<button type="button" id="addContactButton" class="buttons" onclick="addContact();"> Add Contact </button><br>
<p></p>
<button type="button" id="cancelButton" class="buttons" onclick="window.location.href='contacts.html'"> Cancel </button>
<span id="contactAddResult"></span>
</div>
</body></html>